Eneboo - Documentación para desarrolladores
src/libpq/pthread-win32.h
Ir a la documentación de este archivo.
00001 #ifndef __PTHREAD_H
00002 #define __PTHREAD_H
00003 
00004 typedef ULONG pthread_key_t;
00005 typedef HANDLE pthread_mutex_t;
00006 typedef int pthread_once_t;
00007 
00008 DWORD           pthread_self();
00009 
00010 void            pthread_setspecific(pthread_key_t, void *);
00011 void       *pthread_getspecific(pthread_key_t);
00012 
00013 void            pthread_mutex_init(pthread_mutex_t *, void *attr);
00014 void            pthread_mutex_lock(pthread_mutex_t *);
00015 
00016 /* blocking */
00017 void            pthread_mutex_unlock(pthread_mutex_t *);
00018 
00019 #endif
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'