Skip to content

Commit

Permalink
rdoc update.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22605 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
akr committed Feb 24, 2009
1 parent 8428347 commit 4b265d3
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion file.c
Original file line number Diff line number Diff line change
Expand Up @@ -3499,7 +3499,19 @@ rb_thread_flock(void *data)
*
* Example:
*
* File.new("testfile").flock(File::LOCK_UN) #=> 0
* # write lock
* # don't use "w" because it truncates the file before lock.
* File.open("testfile", File::WRONLY|File::CREAT, 0644) {|f|
* f.flock(File::LOCK_EX)
* f.truncate(0)
* f.write "new content"
* }
*
* # read lock
* File.open("testfile", "r") {|f|
* f.flock(File::LOCK_SH)
* p f.read
* }
*
*/

Expand Down

0 comments on commit 4b265d3

Please sign in to comment.