Home
last modified time | relevance | path

Searched refs:pid_t (Results 1 – 11 of 11) sorted by relevance

/Zephyr-latest/include/zephyr/posix/
Dsched.h52 int sched_getparam(pid_t pid, struct sched_param *param);
53 int sched_getscheduler(pid_t pid);
55 int sched_setparam(pid_t pid, const struct sched_param *param);
56 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param);
57 int sched_rr_get_interval(pid_t pid, struct timespec *interval);
Dunistd.h67 pid_t getpid(void);
Dtime.h96 int clock_getcpuclockid(pid_t pid, clockid_t *clock_id);
Dposix_types.h79 typedef int pid_t; typedef
Dsignal.h122 int kill(pid_t pid, int sig);
/Zephyr-latest/lib/posix/options/
Dsched.c37 int sched_getparam(pid_t pid, struct sched_param *param) in sched_getparam()
52 int sched_getscheduler(pid_t pid) in sched_getscheduler()
66 int sched_setparam(pid_t pid, const struct sched_param *param) in sched_setparam()
81 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param) in sched_setscheduler()
92 int sched_rr_get_interval(pid_t pid, struct timespec *interval) in sched_rr_get_interval()
Dmulti_process.c9 pid_t getpid(void) in getpid()
25 FUNC_ALIAS(getpid, _getpid, pid_t);
Dsignal.c133 int kill(pid_t pid, int sig) in kill()
Dclock.c288 int clock_getcpuclockid(pid_t pid, clockid_t *clock_id) in clock_getcpuclockid()
/Zephyr-latest/tests/posix/headers/src/
Dsignal_h.c34 zassert_not_equal((pid_t)-1, (pid_t)0); in ZTEST()
/Zephyr-latest/tests/posix/timers/src/
Dclock.c196 ret = clock_getcpuclockid((pid_t)0, &clock_id); in ZTEST()
200 ret = clock_getcpuclockid((pid_t)2482, &clock_id); in ZTEST()