From f553b10473d34612e9d3315fe1677ad893f6a6ad Mon Sep 17 00:00:00 2001 From: bacchusrx Date: Wed, 14 Mar 2012 15:15:57 -0400 Subject: [PATCH] Update comments to reflect changes in f3ac65a7. --- src/unix/pipe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unix/pipe.c b/src/unix/pipe.c index fbcd782048..67c5ab5cf9 100644 --- a/src/unix/pipe.c +++ b/src/unix/pipe.c @@ -53,12 +53,12 @@ int uv_flock_init(uv_flock_t* lock, const char* filename); int uv_flock_acquire(uv_flock_t* lock, int* locked); -/* Release the file lock. Returns 0 on success, -1 on error. +/* Release (unlink) the file lock. Returns 0 on success, -1 on error. */ int uv_flock_release(uv_flock_t* lock); -/* Destroy the file lock. Releases the file lock and associated resources. +/* Destroy the file lock (close fd and free memory). */ void uv_flock_destroy(uv_flock_t* lock);