mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +00:00
9 lines
334 B
C
9 lines
334 B
C
/* Make the value of PTHREAD_COND_INITIALIZER available to DRD. */
|
|
|
|
#include "drd_cond.h"
|
|
#include <pthread.h>
|
|
|
|
static pthread_cond_t pthread_cond_initializer = PTHREAD_COND_INITIALIZER;
|
|
Addr DRD_(pthread_cond_initializer) = (Addr)&pthread_cond_initializer;
|
|
int DRD_(pthread_cond_initializer_size) = sizeof(pthread_cond_initializer);
|