public Method

SystemCallError.errno

system_call_error.errno    fixnum

Return this SystemCallError’s error number.

Source Code

/*
* call-seq:
*   system_call_error.errno   => fixnum
*
* Return this SystemCallError's error number.
*/

static VALUE
syserr_errno(self)
   VALUE self;
{
   return rb_attr_get(self, rb_intern("errno"));
}
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.