mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-04-28 06:33:36 +00:00
29 lines
467 B
Plaintext
29 lines
467 B
Plaintext
Description:
|
|
Read-write locks (native Windows implementation).
|
|
|
|
Files:
|
|
lib/windows-rwlock.h
|
|
lib/windows-rwlock.c
|
|
lib/windows-initguard.h
|
|
|
|
Depends-on:
|
|
|
|
configure.ac:
|
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
|
gl_CONDITIONAL([GL_COND_OBJ_WINDOWS_RWLOCK],
|
|
[case "$host_os" in mingw* | windows*) true;; *) false;; esac])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_WINDOWS_RWLOCK
|
|
lib_SOURCES += windows-rwlock.c
|
|
endif
|
|
|
|
Include:
|
|
"windows-rwlock.h"
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all
|