home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Supreme Volume 6 #1
/
swsii.zip
/
swsii
/
230
/
FISHEX31.ZIP
/
PROLOG.ERR
< prev
next >
Wrap
Text File
|
1990-08-16
|
26KB
|
1,107 lines
#
------------ RUNTIME ERRORS
#
1001 Gstack overflow. Not enough memory or an endless loop.
#
1002 Heap overflow. Not enough memory or an endless loop.
#
1003 Requested block is too big (max 0xFFF0 bytes).
Internal error which should not be caused by pure Prolog code.
#
1004 Mismatch between freed blocks size and internal record.
Internal error which should not be caused by pure Prolog code.
#
1005 Attempt to release already released block.
Internal error which should not be caused by pure Prolog code.
#
1006 Heap signature overwritten
Internal error which should not be caused by pure Prolog code.
#
1007 Term too big.
A term, including associated pointer data, cannot exceed 64K when
entered into a database or sent across a message pipe.
#
1008 Memory initialization failure.
This indicates severe shortage of memory. The program is unable
to start execution.
#
1010 Stack overflow. Re-configure with Options if necessary.
It may be a help to re-compile the program with the option
'check_determ' turned on in order to check that no unnecessary
backtrack points are stacked, as these increase stack consumption
quite considerably.
#
1020 Trail overflow. Use trail=size to get more space.
The trail is only used in connection with reference variables,
where a free variable with input flowpattern is matched with
a constant or another variable with input flowpattern.
However, the used part of the trail can only be recovered when a
predicate fails and backtracks over the point where the trail was used.
Therefore, if the problem persists in spite of increases in the trail
size, it is necessary to change the execution sequence to avoid the
excessive trail usage. This may often be the case if a top-level predicate
uses infinite recursion ('run:- process, run.') rather than a repeat-fail
combination.
It might also help to try to cut away unneeded backtrackpoints.
#
1030 Arithmetic overflow in real operation.
The range for reals is -1.0e308 .. 1.0e308.
#
1031 Arithmetic overflow in integer operation.
The result cannot be stored in a 16-bit integer, which has a range
of -32768 .. 32767.
#
1032 Division by zero.
#
1033 Negative values or 0 cannot be arguments to 'log' or 'ln'.
#
1034 Negative values cannot be arguments to 'sqrt'.
#
1040 Free variables are not allowed here.
This message occurs when a variable from a reference domain is tried
to be converted to a non reference domain, while the variable is free.
During automatic type conversion, as example from integer to real
it is required that variables are bound.
'assert', 'writef' and 'format' etc. requires that all variables are
bound before the call. (Only 'write' will display a free variable as an
underscore).
#
------------ IO & OS errors
#
1101 Attempt to open an already open file.
Note that a symbolic file-name, declared with a file-domain,
can only be used for one file at a time.
#
1102 Attempt to assign input device to a file that is not in readmode.
The file was opened in write-only mode.
#
1103 Attempt to assign output device to a file that is not in writemode.
The file was opened in read-only mode.
#
1104 The file isn't open.
#
1105 Illegal mode in filemode predicate, should be 0 or 1.
'0' specifies Text mode, while '1' specifies Binary (raw) mode.
#
1106 Invalid operation on device.
#
1107 Eof can only be used during readmode.
The file might be closed.
#
1108 Illegal device or path.
#
1109 Wrong number of arguments in the format string.
#
1110 File too big, or not enough memory for file.
#
1111 Wrong number of bytes read from file.
This is either caused by a corrupt database or errors using the readblock
predicate.
#
1112 Not able to write correct number of bytes to file.
This is probably caused by a full disk.
#
1113 Invalid arguments to the 'date'-predicate.
The arguments should be three integers in the order day, month, year.
#
1114 Invalid arguments to the 'time'-predicate.
The arguments should be four integers in the order
hours 0..24
minutes 0..59
seconds 0..59
hundredths 0..99
#
1115 'unreadchar' failed because of full buffer (max 128 characters).
#
1116 Failure in 'system' call.
Either COMMAND.COM can not be found, or the indicated .EXE or .COM file
can not be found.
#
1117 Error executing external program.
The external program might be too big to be executed from the
Prolog system or it might be an illegal EXE-file, or it remained resident.
Try to execute the external program from the DOS shell to see what happens.
#
1118 Cannot access port(s).
The port(s) cannot be reserved. Another program is probably using them.
#
1133 Incorrect operating system version.
The OS version doesn't have the support required by the attempted operation.
#
----------------------- SCR & WD Error's
#
1201 The arguments in 'makewindow' are illegal.
Check that
- the window number is in the range 1 .. 127
- StartRow+NoOfRows <= no. of rows on screen (usually 25 or 43)
- StartCol+NoOfCols <= no. of cols on screen (usually 80 or 120)
#
1202 The cursor values are illegal.
The Row and Column must be inside the actual window.
#
1203 The window referred to does not exist.
#
1205 Maximum number of windows exceeded. ( The maximum is 34. )
#
1206 The arguments in 'resizewindow' are illegal.
in resizewindow(StartRow,StartCol,NoOfRows,NoOfCols)
Check that
- StartRow+NoOfRows <= no. of rows on screen (usually 25 or 43)
- StartCol+NoOfCols <= no. of cols on screen (usually 80 or 132)
- Both StartRow and StartCol are positive.
#
1207 Scroll predicate is not supported in graphic.
#
1208 Not possible to set indicated textmode.
#
1209 Operation not possible on system windows.
#
1210 Illegal operation on a system window.
#
1211 The window is compressed.
#
1212 The window is expanded.
#
-------------------------- DB Error's
#
1301 Overflow in Expanded Memory System.
#
1302 The database is already open.
A given database selector can only be opened once.
#
1303 Invalid database file name.
#
1304 The database isn't open.
No database is currently associated with DB_SELECTOR.
#
1305 The B+TREE isn't open.
The B+TREE has been closed since the bt_selector was returned
from bt_open or bt_create.
#
1306 The B+TREE already exists.
The names for the B+TREES in a single database must be unique,
and a B+TREE with the indicated name already exists.
#
1308 The database name already exists in the specified location.
The names for databases placed in memory must be unique.
#
1309 Error reopening the database during flush operation.
'db_flush' closes and opens the file in order to flush the DOS
buffers; there is sadly no other way of guaranteeing that the
buffers really are flushed on a DOS-system.
When the database file is opened again, the same name as before
is used. This may cause problems if the database was opened in
the current (default) directory and this has been changed since
then, as 'db_flush' will have closed it in the old directory and
tries to look for it in the new directory.
#
1310 Invalid Order value; it must be between 1 and 255.
#
1311 Invalid Key length.
The key length must be between 1 and 255.
However, it should be chosen as small as possible in order to
save space.
#
1313 Type conflict. The term in the database doesn't correspond with the domain.
Database terms must be inserted and retrieved with variables belonging
to the same domain.
#
1314 Unable to create the indicated database.
#
1315 Unable to open the indicated database in the given place.
#
1316 No EMS installed.
You can not use the option 'in_ems' in db_open and db_create if
you have no EMS card installed.
#
1317 Database marked as invalid.
Whenever a database is closed, or flushed, it is totally consistent and
marked as valid; this is reverted to invalid when it's contents are
changed. If the computer crashes with an invalid database, it isn't
subsequently safe to open and use it as if nothing has happened. In this
case you must try to write a short recovery/copy program, opening the
database with the 'openinvalid' predicate and copying the contents as far
as they go to a new database.
#
1318 Unable to delete database in the indicated place.
#
1319 Invalid database reference number.
You are probably using a database reference number for a term you have
deleted, or you have maybe two open databases and are referring to the
wrong database.
#
1320 The chain does not exist in the database.
#
1321 The named B+Tree does not exist in the database.
#
1322 Invalid B+Tree selector for the given database.
You are probably using a bt_selector for a B+Tree you have deleted, or
you have maybe two open databases and are referring to the wrong database.
#
1323 Can not delete an open index. (Close it first)
#
1324 Key and ref not found in B+tree during key_delete.
You either have a wrong combination of KEY and REF, or you are referring
to a wrong B+Tree.
#
1325 Term too big for conversion.
A single term must not occupy more than 64K for insertion in databases or
transmission on a message pipe.
#
1326 Incorrect database system version.
The database was not created with the same version of the database system
as the one you are now using.
#
1327 Not inside transaction.
The database was opened in sharemode, so all predicates that access the
database must be placed inside a transaction.
#
1328 Write transaction not allowed when file opened in readonly.
db_begintransaction was called with readwrite, but the database
was opened as readonly.
#
1330 Begintransaction made twice without endtransaction.
After a call of db_begintransaction, db_endtransaction must be called
to mark the end of the transaction before another call to db_begintransaction.
#
1331 Update of the database not allowed in readonly mode.
#
1332 Timeout in begintransaction
After having tried RetryCount times with SleepPeriod intervals,
db_begintransaction was unable to access the file.
#
-------------------------- Term Reader
#
1401 Integer expected (during term reading).
#
1402 Real number expected (during term reading).
#
1403 Double quote expected (during term reading).
#
1404 Single quote expected (during term reading).
#
1405 List start expected (during term reading).
#
1406 End of list expected (during term reading).
#
1407 Functor not found in domain (during term reading).
#
1408 '(' expected (during term reading).
#
1409 ',' or ')' expected (during term reading).
#
-------------------------- Editor
#
1501 Editor text buffer full.
#
-------------------------- String handling
#
1601 String index error.
A substring or subchar call with index values outside the string.
#
1602 Result string cannot be bigger than 64K.
#
-------------------------- BGI
#
1701 BGI graphics not installed.
#
1702 Graphics hardware not detected.
#
1703 Device driver file not found.
#
1704 Invalid device driver file.
#
1705 Not enough memory to load driver.
#
1706 Out of memory in scan fill.
#
1707 Out of memory in flood fill.
#
1708 Font file not found.
#
1709 Not enough memory to load font.
#
1710 Invalid graphics mode for selected driver.
#
1711 Graphics error.
#
1712 Graphics I/O error.
#
1713 Invalid font file.
#
1714 Invalid font number.
#
1715 Invalid device number.
#
1750 Wrong list length in setfillpattern.
#
-------------------------- Message
#
1801 Message queue memory allocation failure.
The operating system was unable to access or allocate memory
required by the message queue system.
#
1802 The pipe is closed.
The program at the other end of the pipe has closed it.
#
1803 The pipe is broken.
The pipe connection is lost and the other end didn't close the pipe normally.
This may be caused by the program at the other end of the pipe terminating
without closing the pipe, or a loss of connection somewhere in the operating
system or, in the case of a networked pipe, a network error.
#
1804 Cannot open pipe.
The pipe doesn't exist.
#
1805 Invalid pipe name.
The name must begin with \pipe\ or \\computername\pipe
#
-------------------------- Directory browser
#
1901 Too many files.
#
-------------------------- Configuration loading
#
2001 Bad configuration file.
#
2002 Error reading Configuration file.
#
-------------------------- Operating system errors
Note that many of these only apply to the OS2
version, and that for OS2 many of the messages
are not applicable. They are, however, included
for completeness.
#
7001 Invalid function number
#
7002 File not found
#
7003 Path not found
#
7004 Out of handles
#
7005 Access denied
#
7006 Invalid handle
#
7007 Memory control blocks destroyed
#
7008 Insufficient memory
#
7009 Invalid memory block address
#
7010 Invalid environment
#
7011 Invalid format
#
7012 Invalid access code
#
7013 Invalid data
#
7014 Unknown unit
#
7015 Invalid disk drive
#
7016 Cannot remove current directory
#
7017 Not same device
#
7018 No more files
#
7019 Disk write-protected
#
7020 Unknown unit
#
7021 Drive not ready
#
7022 Unknown command
#
7023 Data error (CRC)
#
7024 Bad request structure length
#
7025 Seek error
#
7026 Unknown type of medium
#
7027 Sector not found
#
7028 Printer out of paper
#
7029 Write fault
#
7030 Read fault
#
7031 General failure
#
7032 Sharing violation
#
7033 Lock violation
#
7034 Invalid disk change
#
7035 FCB unavailable
#
7036 Sharing buffer exceeded
#
7050 Unsupported network request
#
7051 Remote machine not listening
#
7052 Duplicate name on network
#
7053 Network name not found
#
7054 Network busy
#
7055 Device no longer exists on network
#
7056 NetBIOS command limit exceeded
#
7057 Error in network adapter hardware
#
7058 Incorrect response from network
#
7059 Unexpected network error
#
7060 Remote adapter incompatible
#
7061 Print queue full
#
7062 Insufficient memory for print file
#
7063 Print file canceled
#
7064 Network name deleted
#
7065 Network access denied
#
7066 Incorrect network device type
#
7067 Network name not found
#
7068 Network limit exceeded
#
7069 NetBIOS session limit exceeded
#
7070 File sharing temporarily paused
#
7071 Network request not accepted
#
7072 Print or disk redirection paused
#
7080 File already exists
#
7082 Cannot make directory
#
7083 Fail on Int 24H (critical error)
#
7084 Too many redirections
#
7085 Duplicate redirection
#
7086 Invalid password
#
7087 Invalid parameter
#
7088 Network device fault
#
7089 No process slots available
#
7090 System error
#
7091 Timer service table overflow
#
7092 Timer service table duplicate
#
7093 No limits to work on
#
7095 Interupted system call
#
7100 Open semaphore limit exceeded
#
7101 Exclusive semaphore already owned
#
7102 DosCloseSem Found semaphore set
#
7103 Too many exclusive semaphore requests
#
7104 Operation invalid at interrupt time
#
7105 Semaphore owner terminated
#
7106 Semaphore limit exceeded
#
7107 Insert drive B disk into drive A
#
7108 Drive locked by another process
#
7109 Write on pipe with no reader
#
7110 Open/create failed due to explicit fail command
#
7111 Buffer too small
#
7112 Disk is full
#
7113 No more search handles
#
7114 Invalid target handle for DosDupHandle
#
7115 Bad user virtual address
#
7116 Error on display write or keyboard read
#
7117 Invalid DosDevIOCtl category
#
7118 Invalid value for verify flag
#
7119 Driver does not support DosDevIOCtl
#
7120 Invalid function called
#
7121 Timed out waiting for semaphore
#
7122 Insufficient data in buffer
#
7123 Invalid character or bad filename
#
7124 Unimplemented information level
#
7125 No volume label found
#
7126 Invalid module handle
#
7127 Procedure not found in module
#
7128 No child processes found
#
7129 Child processes still running
#
7130 Invalid handle operation for direct disk access
#
7131 Cannot seek to negative offset
#
7132 Cannot seek on pipe or device
#
7133 Drive has previously joined drives
#
7134 Drive is already joined
#
7135 Drive is already substituted
#
7136 Drive is not joined
#
7137 Drive is not substituted
#
7138 Cannot join to joined drive
#
7139 Cannot substitute to substituted drive
#
7140 Cannot join to substituted
#
7141 Cannot substitute to joined drive
#
7142 Drive is busy
#
7143 Cannot join or substitute drive to directory on same drive
#
7144 Must be subdirectory of root
#
7145 Joined directory must be empty
#
7146 Path is already used in substitute
#
7147 Path is already used in join
#
7148 Path is being used by another process
#
7149 Cannot join or substitute drive having directory that is target of previous substitute
#
7150 System trace error
#
7151 DosMuxSemWait errors
#
7152 Systems limit on DosMuxSemWait calls exceeded
#
7153 Invalid list format
#
7154 Volume label too big
#
7155 Cannot create another TCB
#
7156 Signal refused
#
7157 Segment is discarded
#
7158 Segment was not locked
#
7159 Bad tread ID address
#
7160 Bad environment pointer
#
7161 Bad pathname for DosExecPgm
#
7162 Signal already pending
#
7163 Unknown medium
#
7164 No more threads available
#
7165 Monitors not supported
#
7180 Invalid segment number
#
7181 Invalid call gate
#
7182 Invalid ordinal
#
7183 Shared segment or system semaphore already exists
#
7184 No child process running
#
7185 Child process is still alive
#
7186 Invalid flag number
#
7187 semaphore does not exist
#
7188 Invalid stating code segment
#
7189 Invalid stack segment
#
7190 Invalid module type
#
7191 Wrong EXE file header
#
7192 Invalid EXE file,LINK errors
#
7193 Invalid EXE format
#
7194 Iterated data exceeds 64 KB
#
7195 Invalid minimum allocation size
#
7196 Invalid dynamic link from ring 2 segment
#
7197 IOPL not enabled in CONFIG.SYS
#
7198 Invalid segment descriptor privilege limit
#
7199 Automatic data segment exceeds 64 KB
#
7200 Ring 2 segment must be movable
#
7201 Relocation chain exceeds segment limit
#
7202 Infinite loop in relocation chain
#
7203 Environment variable not found
#
7204 Not current country
#
7205 NO process whit handler to receive signal
#
7206 Filename or extension too long
#
7207 Ring too stack in use
#
7208 Meta expansin too long
#
7209 Invalid signal number
#
7210 Inactive thread
#
7211 File system information not available
#
7212 Locked error
#
7213 Bad dynamic link
#
7214 Too many modules
#
7215 Nesting not allowed
#
7216 Cannot shrink ring 2 stack
#
7230 Nonexistent pipe or invalid operation
#
7231 Specified pipe is busy
#
7232 No data on nonblocking pipe read
#
7233 Pipe disconnected by server
#
7234 Additional data is available
#
7240 Network session was canceled
#
7262 Stack too large
#
7303 Invalid process ID
#
7304 Invalid priority level increment
#
7305 Not a descendant process
#
7306 Requestor not Task Manager
#
7307 Invalid priority class
#
7308 Invalid scope
#
7309 Invalid thread ID
#
7310 Cannot shrink DosSubSet segment
#
7311 Out of memory(DosSubAlloc)
#
7312 Invalid block specified(DosSubFree)
#
7313 Bad size parameter
#
7314 Bad flag parameter(DosSubSet)
#
7315 Invalid segment selector
#
7316 Message too long for buffer
#
7317 Message ID number not found
#
7318 Unable to access message file
#
7319 Invalid message file format
#
7320 Invalid insertion variable count
#
7321 Unable to perform function
#
7322 Unable to wake up
#
7323 Invalid semaphore handle
#
7324 No timers available
#
7326 Invalid timer handle
#
7327 Date or time invalid
#
7328 Internal system error
#
7329 Current queue name does not exist
#
7330 Current process is not queue owner
#
7331 Current process owns queue
#
7332 Duplicate queue name
#
7333 Queue record does not exist
#
7334 Inadequate queue memory
#
7335 Invalid queue name
#
7336 Invalid queue priority parameter
#
7337 Invalid queue handle
#
7338 Queue link not found
#
7339 Queue memory error
#
7340 Previous queue record was at end of queue
#
7341 Process does not have access to queue
#
7342 Queue is empty
#
7343 Queue name does not exist
#
7344 Queues not initialized
#
7345 Unable to access queues
#
7346 Unable to add new queue
#
7347 Unable to initialize queues
#
7349 Invalid Vio function replaced
#
7350 Invalid pointer to parameter
#
7355 Unsupported screen mode
#
7356 Invalid cursor width value
#
7358 Invalid row value
#
7359 Invalid column value
#
7366 Invalid wait flag setting
#
7367 Screen not previously locked
#
7369 Invalid session ID
#
7370 No session available
#
7371 Session not found
#
7372 Title cannot be changed
#
7373 Invalid parameter(Kbd)
#
7375 Invalid wait parameter
#
7376 Invalid length for keyboard
#
7377 Invalid echo mode mask
#
7378 Invalid input mode mask
#
7379 Invalid monitor parameters
#
7380 Invalid device name string
#
7381 Invalid device handle
#
7382 Buffer too small
#
7383 Buffer empty
#
7384 Data record too large
#
7386 Mouse handle invalid or closed
#
7389 Invalid display mode parameters
#
7391 Invalid entry point
#
7392 Invalid function mask
#
7394 Pointer drawn
#
7395 Invalid frequency for DosBeep
#
7396 Cannot find COUNTRY.SYS file
#
7397 Cannot open COUNTRY.SYS file
#
7398 Country code not found
#
7399 Information truncated to fit buffer
#
7400 Selected type does not exist
#
7401 Selected type not in file
#
7402 Vio function for Task Manager only
#
7403 Invalid string length(Vio)
#
7404 VioDeRegister not allowed
#
7405 Popup screen not allocated
#
7406 Pop-up already on screen
#
7407 Kdb function for Task Manager only
#
7408 Invalid ASCIIZ string length(Kdb)
#
7409 Invalid function replacement mask
#
7410 KbdRegister not allowed
#
7411 KbdDeRegister not allowed
#
7412 Mou function for Task Manager only
#
7413 Invalid ASCIIZ string length(Mou)
#
7414 Invalid replacement mask
#
7415 MouRegister not allowed
#
7416 MouDeRegister not allowed
#
7417 Invalid action specified
#
7418 INIT called more than one
#
7419 Screen group number not found
#
7420 Caller is not shell
#
7421 Invalid parameter(Vio)
#
7422 Save/restore already owned
#
7423 Thread unblocked by VioModeUndo or VioSavRedrawUndo
#
7425 Caller not Task Manager
#
7426 VioRegister Not allowed
#
7427 No VioModeWait thread exists
#
7428 No VioSavRedrawWait thread exists
#
7429 Function invalid in background
#
7430 Function not allowed during pop-up
#
7431 Caller is not the base shell
#
7432 Invalid status requested
#
7433 No-wait parameter out of bounds
#
7434 Cannot lock screen
#
7435 Invalid wait parameter
#
7436 Invalid Vio handle
#
7438 Invalid length for Vio function
#
7439 Invalid Kdb handle
#
7440 Out of Kbd handles
#
7441 Cannot create logical Keyboard
#
7442 Code page load failed
#
7443 Invalid code page ID
#
7445 Keyboard focus required
#
7446 Caller already has focus
#
7447 Keyboard subsystem is busy
#
7448 Invalid code page
#
7449 Cannot get keyboard focus
#
7450 Session is not selectable
#
7451 Parent/child session not in foreground
#
7452 Not parent of specified child
#
7453 Invalid session start mode
#
7454 Invalid session start option
#
7455 Invalid session bonding option
#
7456 Invalid session select option
#
7457 Session started in background
#
7458 Invalid session stop option
#
7459 Reserved parameter not 0
#
7460 Session parent process already exists
#
7461 Invalid data length
#
7462 Parent session not bound
#
7463 Retry request block allocation
#
7464 Unavailable for detached process(Kbd)
#
7465 Unavailable for detached process(Vio)
#
7466 Unavailable for detached process(Mou)
#
7467 No font available to support mode
#
7468 User font active
#
7469 Invalid code page specified
#
7470 System displays do not support code page
#
7471 Current display does not support code page
#
7472 Invalid code page
#
7473 Code page list is too small
#
7474 Code page not moved
#
7475 Mode switch initialization error
#
7476 Code page not found
#
7477 Internal error
#
7478 Invalid session start trace indicator
#
7479 Vio internal Resource error
#
7480 Vio shell initialization error
#
7481 No Task Manager hard errors
#
7482 DosSetCp unable to set display or keyboard code page
#
7483 Error during Vio pop-up
#
7484 Critical section overflow
#
7485 Critical section underflow
#
7486 Reserved parameter is not 0
#
7487 Bad physical address
#
7488 No selectors requested
#
7489 Not enough GDT selectors available
#
7490 Not a GDT selector
#
7491 Invalid program type
#
7492 Invalid program control
#
7493 Invalid program inheritance option
#
7494 Vio function not allowed in PM window
#
7495 Function not supported in non PM screen group
#
7496 Vio shield already owned
#
7497 Vio handle exhausted
#
7498 Vio error occured, details sent to error log
#
7499 Invalid display context
#
7500 Kbd input not available
#
7501 Mou input not available
#
7502 Invalid mouse handle
#
7503 Invalid debugging parameters
#
7504 Kbd function not allowed in PM window
#
7505 Mou function not allowed in PM window
#
7506 Invalid icon file
#