mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 14:29:34 +02:00
172 lines
4.5 KiB
SQL
172 lines
4.5 KiB
SQL
{
|
|
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'
|
|
);
|