aesop Repository branch, master, updated. 9d1120610c94180a458db02d632fb52cd24cdf32
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "aesop Repository". The branch, master has been updated via 9d1120610c94180a458db02d632fb52cd24cdf32 (commit) from b9972704b7601a3f95a90baa2bb0e430c7b8b2e7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 9d1120610c94180a458db02d632fb52cd24cdf32 Author: Dries Kimpe <[email protected]> Date: Thu Feb 23 23:43:27 2012 -0600 Make aesocket naming consistent (done->finalize) ----------------------------------------------------------------------- Summary of changes: src/socket/aesocket.ae | 2 +- src/socket/aesocket.hae | 2 +- src/socket/test/simple.ae | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) Diff of changes: diff --git a/src/socket/aesocket.ae b/src/socket/aesocket.ae index f0a14c6..1a657e4 100644 --- a/src/socket/aesocket.ae +++ b/src/socket/aesocket.ae @@ -111,7 +111,7 @@ int aesocket_init (void) return AE_SUCCESS; } -int aesocket_done (void) +int aesocket_finalize (void) { ae_mutex_lock (&mutex); if (0 == --refcount) diff --git a/src/socket/aesocket.hae b/src/socket/aesocket.hae index 503b1a8..55db9ac 100644 --- a/src/socket/aesocket.hae +++ b/src/socket/aesocket.hae @@ -20,7 +20,7 @@ int aesocket_init (void); /** * Inform the socket module it is no longer needed. */ -int aesocket_done (void); +int aesocket_finalize (void); /** diff --git a/src/socket/test/simple.ae b/src/socket/test/simple.ae index 4fc78be..2a68033 100644 --- a/src/socket/test/simple.ae +++ b/src/socket/test/simple.ae @@ -166,7 +166,7 @@ static __blocking int dotest (int argc, char ** args) aesocket_init (); test1 (); test2 (); - aesocket_done (); + aesocket_finalize (); return 0; } hooks/post-receive -- aesop Repository
participants (1)
-
noreply@mcs.anl.gov