File: pthread.h

package info (click to toggle)
rdma-core 61.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,124 kB
  • sloc: ansic: 176,798; python: 15,496; sh: 2,742; perl: 1,465; makefile: 73
file content (13 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* COPYRIGHT (c) 2017 Obsidian Research Corporation.
   Licensed under BSD (MIT variant) or GPLv2. See COPYING. */

#ifndef _SPARSE_PTHREAD_H_
#define _SPARSE_PTHREAD_H_

#include_next <pthread.h>

/* Sparse complains that the glibc version of this has 0 instead of NULL */
#undef PTHREAD_MUTEX_INITIALIZER
#define PTHREAD_MUTEX_INITIALIZER {}

#endif