source: azure_iot_hub/trunk/musl-1.1.18/src/process/posix_spawnattr_sched.c@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 542 bytes
Line 
1#include <spawn.h>
2#include <sched.h>
3#include <errno.h>
4
5int posix_spawnattr_getschedparam(const posix_spawnattr_t *restrict attr,
6 struct sched_param *restrict schedparam)
7{
8 return ENOSYS;
9}
10
11int posix_spawnattr_setschedparam(posix_spawnattr_t *restrict attr,
12 const struct sched_param *restrict schedparam)
13{
14 return ENOSYS;
15}
16
17int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int *restrict policy)
18{
19 return ENOSYS;
20}
21
22int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr, int policy)
23{
24 return ENOSYS;
25}
Note: See TracBrowser for help on using the repository browser.