Changeset 1869 for Whitix/tags
- Timestamp:
- 01/27/09 13:23:38 (3 years ago)
- Location:
- Whitix/tags/0.2a/user/posix/include
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
Whitix/tags/0.2a/user/posix/include/pthread.h
r1831 r1869 48 48 typedef unsigned int pthread_condattr_t; 49 49 50 #define PTHREAD_MUTEX_INITIALIZER {0, NULL}50 #define PTHREAD_MUTEX_INITIALIZER {0, 0, NULL, PTHREAD_MUTEX_NORMAL, 0, 0} 51 51 #define PTHREAD_MUTEX_NORMAL 0 52 52 #define PTHREAD_MUTEX_RECURSIVE 2 -
Whitix/tags/0.2a/user/posix/include/sched.h
r626 r1869 17 17 int sched_get_priority_min(int policy); 18 18 int sched_get_param(pid_t pid,struct sched_param* scParam); 19 int sched_yield( );19 int sched_yield(void); 20 20 21 21 #endif
