Skip to content

Instantly share code, notes, and snippets.

@mheffner
Created August 18, 2009 15:57
Show Gist options
  • Save mheffner/169799 to your computer and use it in GitHub Desktop.
Save mheffner/169799 to your computer and use it in GitHub Desktop.
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>
#include <pthread.h>
static int (*condwait_internal)(pthread_cond_t *cond, pthread_mutex_t *mutex);
void __attribute__ ((constructor)) init(void);
/* Library constructor */
void
init(void)
{
condwait_internal = dlsym(RTLD_NEXT, "pthread_cond_wait");
}
int
pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
{
int ret;
printf("Calling func condwait with cond: %p, mutex: %p...",
cond, mutex);
fflush(stdout);
ret = condwait_internal(cond, mutex);
printf("..got it!\n");
return ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment