Next: , Previous: , Up: posix   [Index]


4.2 Condition object types

Condition Type: &errno

Condition object type representing system errors described by an encoded errno value; it is derived from &condition.

Function: make-errno-condition errno

Build and return a new &errno condition object holding the given encoded errno value.

Function: errno-condition? obj

Return #t if obj is an instance of &errno.

Function: condition-errno obj

Accessor for the encoded errno value in obj, which must be an instance of &errno.

Condition Type: &h_errno

Condition object type representing system errors described by an encoded h_errno value; it is derived from &condition.

Function: make-h_errno-condition h_errno

Build and return a new &h_errno condition object holding the given encoded h_errno value.

Function: h_errno-condition? obj

Return #t if obj is an instance of &h_errno.

Function: condition-h_errno obj

Accessor for the encoded h_errno value in obj, which must be an instance of &h_errno.