mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 01:09:25 +02:00
* sys_errlist fixed
git-svn-id: trunk@3015 -
This commit is contained in:
parent
51e976769d
commit
a446c578ef
@ -14,8 +14,9 @@
|
|||||||
**********************************************************************}
|
**********************************************************************}
|
||||||
|
|
||||||
const
|
const
|
||||||
sys_errn = 121;
|
sys_errn = 152;
|
||||||
sys_errlist:array[0..sys_errn-1] of pchar = (
|
sys_errlist:array[0..sys_errn-1] of pchar = (
|
||||||
|
'Success',
|
||||||
'Not super-user',
|
'Not super-user',
|
||||||
'No such file or directory',
|
'No such file or directory',
|
||||||
'No such process',
|
'No such process',
|
||||||
@ -53,13 +54,13 @@ const
|
|||||||
'No message of desired type',
|
'No message of desired type',
|
||||||
'Identifier removed',
|
'Identifier removed',
|
||||||
'Channel number out of range',
|
'Channel number out of range',
|
||||||
'Level not synchronized',
|
'Level 2 not synchronized',
|
||||||
'Level halted',
|
'Level 3 halted',
|
||||||
'Level reset',
|
'Level 3 reset',
|
||||||
'Link number out of range',
|
'Link number out of range',
|
||||||
'Protocol driver not attached',
|
'Protocol driver not attached',
|
||||||
'No CSI structure available',
|
'No CSI structure available',
|
||||||
'Level halted',
|
'Level 2 halted',
|
||||||
'Deadlock condition.',
|
'Deadlock condition.',
|
||||||
'No record locks available.',
|
'No record locks available.',
|
||||||
'Operation canceled',
|
'Operation canceled',
|
||||||
@ -73,8 +74,10 @@ const
|
|||||||
'invalid slot',
|
'invalid slot',
|
||||||
'file locking deadlock error',
|
'file locking deadlock error',
|
||||||
'bad font file fmt',
|
'bad font file fmt',
|
||||||
|
'Interprocess Robust Locks',
|
||||||
'process died with the lock',
|
'process died with the lock',
|
||||||
'lock is not recoverable',
|
'lock is not recoverable',
|
||||||
|
'stream problems',
|
||||||
'Device not a stream',
|
'Device not a stream',
|
||||||
'no data (for no delay io)',
|
'no data (for no delay io)',
|
||||||
'timer expired',
|
'timer expired',
|
||||||
@ -105,7 +108,7 @@ const
|
|||||||
'Unsupported file system operation',
|
'Unsupported file system operation',
|
||||||
'Symbolic link loop',
|
'Symbolic link loop',
|
||||||
'Restartable system call',
|
'Restartable system call',
|
||||||
'if pipe/FIFO don''t sleep in stream head',
|
'if pipe/FIFO, don''t sleep in stream head',
|
||||||
'directory not empty',
|
'directory not empty',
|
||||||
'Too many users (for UFS)',
|
'Too many users (for UFS)',
|
||||||
'Socket operation on non-socket',
|
'Socket operation on non-socket',
|
||||||
@ -113,6 +116,26 @@ const
|
|||||||
'Message too long',
|
'Message too long',
|
||||||
'Protocol wrong type for socket',
|
'Protocol wrong type for socket',
|
||||||
'Protocol not available',
|
'Protocol not available',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
'Protocol not supported',
|
'Protocol not supported',
|
||||||
'Socket type not supported',
|
'Socket type not supported',
|
||||||
'Operation not supported on socket',
|
'Operation not supported on socket',
|
||||||
@ -128,6 +151,14 @@ const
|
|||||||
'No buffer space available',
|
'No buffer space available',
|
||||||
'Socket is already connected',
|
'Socket is already connected',
|
||||||
'Socket is not connected',
|
'Socket is not connected',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'',
|
||||||
'Can''t send after socket shutdown',
|
'Can''t send after socket shutdown',
|
||||||
'Too many references: can''t splice',
|
'Too many references: can''t splice',
|
||||||
'Connection timed out',
|
'Connection timed out',
|
||||||
@ -138,4 +169,3 @@ const
|
|||||||
'operation now in progress',
|
'operation now in progress',
|
||||||
'Stale NFS file handle'
|
'Stale NFS file handle'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user