diff options
author | jdp <jdp@FreeBSD.org> | 2000-01-29 01:33:21 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 2000-01-29 01:33:21 +0000 |
commit | 1a300d3c493dc0b2a8b8ee0c040ae86e55c46b19 (patch) | |
tree | 09985411a726059d7900f9766f12b7fd4b6d9a63 /lib | |
parent | 4bff590782e7100c86fb3cb5c40e46fb5c813b42 (diff) | |
download | FreeBSD-src-1a300d3c493dc0b2a8b8ee0c040ae86e55c46b19.zip FreeBSD-src-1a300d3c493dc0b2a8b8ee0c040ae86e55c46b19.tar.gz |
Revive the warning that dllockinit() is experimental and subject to
change.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/dllockinit.3 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libc/gen/dllockinit.3 b/lib/libc/gen/dllockinit.3 index c9f7207..5597c00 100644 --- a/lib/libc/gen/dllockinit.3 +++ b/lib/libc/gen/dllockinit.3 @@ -1,5 +1,5 @@ .\" -.\" Copyright (c) 1999 John D. Polstra +.\" Copyright (c) 1999, 2000 John D. Polstra .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without @@ -36,6 +36,11 @@ .Ft void .Fn dllockinit "void *context" "void *(*lock_create)(void *context)" "void (*rlock_acquire)(void *lock)" "void (*wlock_acquire)(void *lock)" "void (*lock_release)(void *lock)" "void (*lock_destroy)(void *lock)" "void (*context_destroy)(void *context)" .Sh DESCRIPTION +.Bf Sy +This interface is experimental. It may be changed or eliminated in +future releases. +.Ef +.Pp Threads packages can call .Nm at initialization time to register locking functions for the dynamic |