diff options
author | Daniel Eischen <deischen@FreeBSD.org> | 2007-04-29 14:05:22 +0000 |
---|---|---|
committer | Daniel Eischen <deischen@FreeBSD.org> | 2007-04-29 14:05:22 +0000 |
commit | 5f864214bbb2612cbb8b1b69d124036711b73946 (patch) | |
tree | 5f8a81ab8d058f88af8e9dc21d42f02d03624a23 /lib/libpthread | |
parent | 8d3b75aa339d24e6b235b9867f169c19f9551406 (diff) |
Use C comments since we now preprocess these files with CPP.
Notes
Notes:
svn path=/head/; revision=169092
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/pthread.map | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/lib/libpthread/pthread.map b/lib/libpthread/pthread.map index 31ee580afc56..17b522e3048a 100644 --- a/lib/libpthread/pthread.map +++ b/lib/libpthread/pthread.map @@ -1,14 +1,15 @@ -# $FreeBSD$ +/* + * $FreeBSD$ + */ -# -# Hack. libpthread had versioning before libc, but we need to -# reside in the same namespace as libc if we want to override -# libc functions. Use this so we don't break older applications -# that require symbols from "LIBTHREAD_1_0". -# -# From now on, use the same naming scheme as libc. -# -# +/* + * Hack. libpthread had versioning before libc, but we need to + * reside in the same namespace as libc if we want to override + * libc functions. Use this so we don't break older applications + * that require symbols from "LIBTHREAD_1_0". + * + * From now on, use the same naming scheme as libc. + */ LIBTHREAD_1_0 { global: ___creat; @@ -341,7 +342,7 @@ global: write; writev; - # Debugger needs these. + /* Debugger needs these. */ _libkse_debug; _thread_activated; _thread_active_threads; @@ -369,9 +370,9 @@ local: *; }; -# -# Use the same naming scheme as libc. -# +/* + * Use the same naming scheme as libc. + */ FBSD_1.0 { global: __error; @@ -531,11 +532,11 @@ local: *; }; -# -# List the private interfaces reserved for use in FreeBSD libraries. -# These are not part of our application ABI. -# -FBSDprivate { +/* + * List the private interfaces reserved for use in FreeBSD libraries. + * These are not part of our application ABI. + */ +FBSDprivate_1.0 { global: ___creat; __accept; @@ -706,7 +707,7 @@ global: _wait; _waitpid; - # Debugger needs these. + /* Debugger needs these. */ _libkse_debug; _thread_activated; _thread_active_threads; |