Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Userland/Libraries/LibC/pthread.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ int pthread_setschedparam(pthread_t thread, int policy, const struct sched_param
#define PTHREAD_PROCESS_PRIVATE 1
#define PTHREAD_PROCESS_SHARED 2

#define PTHREAD_COND_INITIALIZER \
{ \
0, 0, CLOCK_MONOTONIC_COARSE \
#define PTHREAD_COND_INITIALIZER \
{ \
0, 0, CLOCK_REALTIME_COARSE \
}

// FIXME: Actually implement this!
Expand Down
Loading