sendfile 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +4 -0
- data/ext/sendfile.c +2 -2
- data/sendfile.gemspec +1 -1
- metadata +2 -2
data/ChangeLog
CHANGED
data/ext/sendfile.c
CHANGED
@@ -29,7 +29,7 @@
|
|
29
29
|
* Original Author: Toby DiPasquale <toby@cbcg.net>
|
30
30
|
* Current Maintainer: Toby DiPasquale <toby@cbcg.net>
|
31
31
|
*
|
32
|
-
* $Id: sendfile.c,v 1.
|
32
|
+
* $Id: sendfile.c,v 1.4 2006/03/27 19:14:53 codeslinger Exp $
|
33
33
|
*/
|
34
34
|
#include "ruby.h"
|
35
35
|
#include "rubyio.h"
|
@@ -68,7 +68,7 @@ static off_t __sendfile( int out, int in, off_t off, size_t count, struct timeva
|
|
68
68
|
off += written;
|
69
69
|
count -= written;
|
70
70
|
if (rv < 0 && errno != EAGAIN)
|
71
|
-
|
71
|
+
rb_sys_fail( "sendfile");
|
72
72
|
if (!rv)
|
73
73
|
break;
|
74
74
|
rb_thread_select( 0, NULL, NULL, NULL, tv);
|
data/sendfile.gemspec
CHANGED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: sendfile
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.9.
|
7
|
-
date: 2006-03-
|
6
|
+
version: 0.9.2
|
7
|
+
date: 2006-03-27 00:00:00 -05:00
|
8
8
|
summary: Ruby interface to sendfile(2) system call
|
9
9
|
require_paths:
|
10
10
|
- lib
|