GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
JAM_Errno(3) JAM subroutine library JAM_Errno(3)

JAM_Errno - Specify I/O error

#include <jamlib/jam.h>
int JAM_Errno(s_JamBase* Base_PS);

When any of these library routines return JAM_IO_ERROR, you can call this function to find out exactly what went wrong.

Base_PS
The message base to use

Standard ´errno´ values, as the C compiler generated them, or if the I/O error was system specific, the return code is (10000 + system status code).

int   Result_I;
uchar Text_AC[10];
/* generate an I/O error */
Result_I = JAM_ReadMsgText(0xffffffff, 10, Text_AC);
if (Result_I) {
    errno = JAM_Errno(Base_PS);
    perror("JAM I/O error");
}

This manual page was created by Sir Raorn <raorn@altlinux.ru>, based on original JAMlib documentation by Bjorn Stenberg <bjorn@haxx.nu> and Johan Billing <billing@df.lth.se>.

jamlib(3), errno(3)
2002-11-07

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.