123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- {
- This file is part of the Free Pascal run time library.
- Copyright (c) 2006 by Florian Klaempfl
- Contains SunOS specific errors for error.pp in rtl/unix
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- const
- sys_errn = 152;
- sys_errlist:array[0..sys_errn-1] of pchar = (
- 'Success',
- 'Not super-user',
- 'No such file or directory',
- 'No such process',
- 'interrupted system call',
- 'I/O error',
- 'No such device or address',
- 'Arg list too long',
- 'Exec format error',
- 'Bad file number',
- 'No children',
- 'Resource temporarily unavailable',
- 'Not enough core',
- 'Permission denied',
- 'Bad address',
- 'Block device required',
- 'Mount device busy',
- 'File exists',
- 'Cross-device link',
- 'No such device',
- 'Not a directory',
- 'Is a directory',
- 'Invalid argument',
- 'File table overflow',
- 'Too many open files',
- 'Inappropriate ioctl for device',
- 'Text file busy',
- 'File too large',
- 'No space left on device',
- 'Illegal seek',
- 'Read only file system',
- 'Too many links',
- 'Broken pipe',
- 'Math arg out of domain of func',
- 'Math result not representable',
- 'No message of desired type',
- 'Identifier removed',
- 'Channel number out of range',
- 'Level 2 not synchronized',
- 'Level 3 halted',
- 'Level 3 reset',
- 'Link number out of range',
- 'Protocol driver not attached',
- 'No CSI structure available',
- 'Level 2 halted',
- 'Deadlock condition.',
- 'No record locks available.',
- 'Operation canceled',
- 'Operation not supported',
- 'Disc quota exceeded',
- 'invalid exchange',
- 'invalid request descriptor',
- 'exchange full',
- 'no anode',
- 'invalid request code',
- 'invalid slot',
- 'file locking deadlock error',
- 'bad font file fmt',
- 'Interprocess Robust Locks',
- 'process died with the lock',
- 'lock is not recoverable',
- 'stream problems',
- 'Device not a stream',
- 'no data (for no delay io)',
- 'timer expired',
- 'out of streams resources',
- 'Machine is not on the network',
- 'Package not installed',
- 'The object is remote',
- 'the link has been severed',
- 'advertise error',
- 'srmount error',
- 'Communication error on send',
- 'Protocol error',
- 'locked lock was unmapped',
- 'Facility is not active',
- 'multihop attempted',
- 'trying to read unreadable message',
- 'path name is too long',
- 'value too large to be stored in data type',
- 'given log. name not unique',
- 'f.d. invalid for this operation',
- 'Remote address changed',
- 'Can''t access a needed shared lib.',
- 'Accessing a corrupted shared lib.',
- '.lib section in a.out corrupted.',
- 'Attempting to link in too many libs.',
- 'Attempting to exec a shared library.',
- 'Illegal byte sequence.',
- 'Unsupported file system operation',
- 'Symbolic link loop',
- 'Restartable system call',
- 'if pipe/FIFO, don''t sleep in stream head',
- 'directory not empty',
- 'Too many users (for UFS)',
- 'Socket operation on non-socket',
- 'Destination address required',
- 'Message too long',
- 'Protocol wrong type for socket',
- 'Protocol not available',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- 'Protocol not supported',
- 'Socket type not supported',
- 'Operation not supported on socket',
- 'Protocol family not supported',
- 'Address family not supported by protocol family',
- 'Address already in use',
- 'Can''t assign requested address',
- 'Network is down',
- 'Network is unreachable',
- 'Network dropped connection because of reset',
- 'Software caused connection abort',
- 'Connection reset by peer',
- 'No buffer space available',
- 'Socket is already connected',
- 'Socket is not connected',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- '',
- 'Can''t send after socket shutdown',
- 'Too many references: can''t splice',
- 'Connection timed out',
- 'Connection refused',
- 'Host is down',
- 'No route to host',
- 'operation already in progress',
- 'operation now in progress',
- 'Stale NFS file handle'
- );
|