
21-04-2012
|
Member | | Join Date: Nov 2011
Posts: 124
| |
Re: System Error Code 100 to Code 199 in Windows To start with; let me define Semaphore to you. Semaphore is a variable used to control and manage multiple processes and to manage the resources they require. This term is mostly encountered in topics related to multi-threading. - Error Code 100: This error means you cannot create another Semaphore. It is usually displayed as ?ERROR_TOO_MANY_SEMAPHORES? or with a value of 0x64.
- Error Code 101: This error means that semaphore that you are trying to utilize is already connected or being used by another process. It is usually displayed as ?ERROR_EXCL_SEM_ALREADY_OWNED? or with a value of 0x65.
- Error Code 102: This error means that semaphore that you are trying to terminate is part of set of multiple semaphores and thus cannot be terminated. It is usually displayed as ?ERROR_SEM_IS_SET? or with a value of 0x66.
- Error Code 103: This error means that semaphore cannot be set again. It is usually displayed as ?ERROR_TOO_MANY_SEM_REQUESTS? or with a value of 0x67.
- Error Code 104: This error means that user cannot request new semaphore during interrupt time. It is usually displayed as ?ERROR_INVALID_AT_INTERRUPT_TIME? or with a value of 0x68.
- Error Code 105: This error means that semaphore?s previous ownership now no longer exists with current user. It is usually displayed as ?ERROR_SEM_OWNER_DIED? or with a value of 0x69.
- Error Code 106: This error means Enter Diskette for drive. It is usually displayed as ?ERROR_SEM_USER_LIMIT? or with a value of 0x6A.
- Error Code 107: This error means program was aborted by system as it couldn?t find next diskette to proceed. It is usually displayed as ?ERROR_DISK_CHANGE? or with a value of 0x6B.
- Error Code 108: This error means disk you are trying to access is either locked or reserved by another process. It is usually displayed as ?ERROR_DRIVE_LOCKED? or with a value of 0x6C.
- Error Code 109: This error means process pipe has ended. It is usually displayed as ?ERROR_BROKEN_PIPE? or with a value of 0x6D.
- Error Code 110: This error means file or program cannot be opened. It is usually displayed as ?ERROR_OPEN_FAILED? or with a value of 0x6E.
- Error Code 111: This error means file name inserted is too long. It is usually displayed as ?ERROR_BUFFER_OVERFLOW? or with a value of 0x6F.
- Error Code 112: This error means insufficient Disk Space. It is usually displayed as ?ERROR_DISK_FULL? or with a value of 0x70.
- Error Code 113: This error means internal file identifiers unavailable. It is usually displayed as ?ERROR_NO_MORE_SEARCH_HANDLES? or with a value of 0x71.
- Error Code 114: This error means targeted internal file identifier not available. It is usually displayed as ?ERROR_INVALID_TARGET_HANDLE? or with a value of 0x72.
- Error Code 117: This error means IOCTL calls made by specific program is invalid. It is usually displayed as ?ERROR_INVALID_CATEGORY? or with a value of 0x75.
- Error Code 118: This error means verify-on-write switch parameter value inserted is invalid. It is usually displayed as ?ERROR_INVALID_VERIFY_SWITCH? or with a value of 0x76.
- Error Code 119: This error means command requested by user is not recognized by system. It is usually displayed as ?ERROR_BAD_DRIVER_LEVEL? or with a value of 0x77.
- Error Code 120: This error means requested function is not available in system. It is usually displayed as ?ERROR_CALL_NOT_IMPLEMENTED? or with a value of 0x78.
- Error Code 121: This error means Semaphore?s timeout period has expired. It is usually displayed as ?ERROR_SEM_TIMEOUT? or with a value of 0x79.
- Error Code 122: This error means Data passed to system call is small in size. It is usually displayed as ?ERROR_INSUFFICIENT_BUFFER? or with a value of 0x7A.
- Error Code 123: This error means syntax used for naming a file, directory or volume is wrong. It is usually displayed as ?ERROR_INVALID_NAME? or with a value of 0x7B.
- Error Code 124: This error means system call level is incorrect. It is usually displayed as ?ERROR_INVALID_LEVEL? or with a value of 0x7C.
- Error Code 125: This error means no volume label available for disk. It is usually displayed as ?ERROR_NO_VOLUME_LABEL? or with a value of 0x7D.
- Error Code 126: This error means unable to find specified volume. It is usually displayed as ?ERROR_MOD_NOT_FOUND? or with a value of 0x7E.
- Error Code 127: This error means unable to find specified procedure. It is usually displayed as ?ERROR_PROC_NOT_FOUND? or with a value of 0x7F.
- Error Code 128: This error means no child process available. It is usually displayed as ?ERROR_WAIT_NO_CHILDREN? or with a value of 0x80.
- Error Code 129: This error means this process cannot be executed in Win32 mode. It is usually displayed as ?ERROR_CHILD_NOT_COMPLETE? or with a value of 0x81.
- Error Code 130: This error means user has attempted to use file handle to open disk partition for performing task invalid for operation except raw disk I/O. It is usually displayed as ?ERROR_DIRECT_ACCESS_HANDLE? or with a value of 0x82.
|