/usr/include/dpm/Cmutex.h is in libdpm-dev 1.8.7-3.1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /*
* $Id: Cmutex.h,v 1.1 2005/03/29 11:06:41 baud Exp $
*/
/*
* Copyright (C) 2000 by CERN/IT/PDP/DM
* All rights reserved
*/
#ifndef _CASTOR_MUTEX_H
#define _CASTOR_MUTEX_H
#include <osdep.h>
EXTERN_C void DLL_DECL Cmutex_init _PROTO((int (*) _PROTO((void *, int)),
int (*) _PROTO((void *))));
EXTERN_C int DLL_DECL Cmutex_lock _PROTO((void *, int));
EXTERN_C int DLL_DECL Cmutex_unlock _PROTO((void *));
#define Cmutex_trylock(addr) Cmutex_lock(addr,0)
#endif /* _CASTOR_MUTEX_H */
|