]> sourceware.org Git - glibc.git/blame - sysdeps/stub/libc-lock.h
* Makefile (headers): Add libc-lock.h.
[glibc.git] / sysdeps / stub / libc-lock.h
CommitLineData
3d3ac840
RM
1/* libc-internal interface for mutex locks. Stub version.
2Copyright (C) 1996 Free Software Foundation, Inc.
3This file is part of the GNU C Library.
4
5The GNU C Library is free software; you can redistribute it and/or
6modify it under the terms of the GNU Library General Public License as
7published by the Free Software Foundation; either version 2 of the
8License, or (at your option) any later version.
9
10The GNU C Library is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13Library General Public License for more details.
14
15You should have received a copy of the GNU Library General Public
16License along with the GNU C Library; see the file COPYING.LIB. If
17not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18Cambridge, MA 02139, USA. */
19
20#ifndef _LIBC_LOCK_H
21#define _LIBC_LOCK_H 1
22
23
24/* Define a lock variable NAME with storage class CLASS. The lock must be
25 initialized with __libc_lock_init before it can be used (or define it
26 with __libc_lock_define_initialized, below). Use `extern' for CLASS to
27 declare a lock defined in another module. */
28#define __libc_lock_define(CLASS,NAME)
29
30/* Define an initialized lock variable NAME with storage class CLASS. */
31#define __libc_lock_define_initialized(CLASS,NAME)
32
33/* Initialize the named lock variable, leaving it in a consistent, unlocked
34 state. */
35#define __libc_lock_init(NAME)
36
37/* Lock the named lock variable. */
38#define __libc_lock_lock(NAME)
39
40/* Unlock the named lock variable. */
41#define __libc_lock_unlock(NAME)
42
43
44#endif /* libc-lock.h */
This page took 0.030616 seconds and 5 git commands to generate.