nfs-ganesha 1.4
|
This file contains the functions for the RW lock management. More...
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <execinfo.h>
#include "RW_Lock.h"
#include <malloc.h>
#include <assert.h>
Go to the source code of this file.
Defines | |
#define | DEBUG_STACK_SIZE 1000 |
Functions | |
void | dbg_backtrace (void) |
int | P_r (rw_lock_t *plock) |
int | V_r (rw_lock_t *plock) |
int | P_w (rw_lock_t *plock) |
int | V_w (rw_lock_t *plock) |
int | rw_lock_downgrade (rw_lock_t *plock) |
int | rw_lock_init (rw_lock_t *plock) |
int | rw_lock_destroy (rw_lock_t *plock) |
This file contains the functions for the RW lock management.
RW_Lock.c : this file contains the functions for the RW lock management.
Definition in file RW_Lock.c.