source: EcnlProtoTool/trunk/musl-1.1.18/src/thread/pthread_attr_setinheritsched.c@ 444

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

muslのソースコードを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 165 bytes
Line 
1#include "pthread_impl.h"
2
3int pthread_attr_setinheritsched(pthread_attr_t *a, int inherit)
4{
5 if (inherit > 1U) return EINVAL;
6 a->_a_sched = inherit;
7 return 0;
8}
Note: See TracBrowser for help on using the repository browser.