diff options
| -rw-r--r-- | src/util/profile/ChangeLog | 5 | ||||
| -rw-r--r-- | src/util/profile/prof_int.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog index bca4cd074..1417326a9 100644 --- a/src/util/profile/ChangeLog +++ b/src/util/profile/ChangeLog @@ -1,3 +1,8 @@ +2004-10-13 Alexandra Ellwood <lxs@mit.edu> + + * prof_int.h Added prototypes for profile_lock_global() + and profile_unlock_global(). + 2004-10-12 Ken Raeburn <raeburn@mit.edu> * prof_init.c (profile_init): Don't add error table here. diff --git a/src/util/profile/prof_int.h b/src/util/profile/prof_int.h index e07b0c1e3..1fbe37239 100644 --- a/src/util/profile/prof_int.h +++ b/src/util/profile/prof_int.h @@ -201,6 +201,9 @@ errcode_t profile_close_file void profile_dereference_data (prf_data_t); void profile_dereference_data_locked (prf_data_t); +int profile_lock_global(); +int profile_unlock_global(); + /* prof_init.c -- included from profile.h */ errcode_t profile_ser_size (const char *, profile_t, size_t *); |
