Template:CELL ERROR FACILITY DEBUG - 0x051: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
(Created page with "{{ed right|CELL ERROR FACILITY DEBUG - 0x051}} === Debug errors (libdbg) === {| border="1" cellspacing="0" cellpadding="5" border="#999" class="wikitable sortable" style="bord...")
 
 
(One intermediate revision by the same user not shown)
Line 17: Line 17:
|- bgcolor="#cccccc"
|- bgcolor="#cccccc"
! Name !! <abbr title="0x8*******">Errorcode</abbr> !! Remarks
! Name !! <abbr title="0x8*******">Errorcode</abbr> !! Remarks
|-
| CELL_DBGFONT_ERROR_MUTEX_CREATE || 0x80510101 || Failed to create a mutex for exclusive control
|-
| CELL_DBGFONT_ERROR_MUTEX_DESTROY || 0x80510102 || Failed to destroy mutex
|-
| CELL_DBGFONT_ERROR_MUTEX_LOCK || 0x80510103 || Failed to lock the mutex
|-
|-
| CELL_DBGFONT_ERROR_MALLOC || 0x80510104 || Allocation of main memory failed
| CELL_DBGFONT_ERROR_MALLOC || 0x80510104 || Allocation of main memory failed
Line 43: Line 49:
! Name !! <abbr title="0x8*******">Errorcode</abbr> !! Remarks
! Name !! <abbr title="0x8*******">Errorcode</abbr> !! Remarks
|-
|-
| SYS_DECI3_EINVAL || 0x80510201 || Invalid parameter
| SYS_DECI3_EINVAL<br />CELL_DEBUG_ERROR_INVAL || 0x80510201 || Invalid parameter
|-
|-
| SYS_DECI3_EBADF || 0x80510202 || Invalid session ID
| SYS_DECI3_EBADF<br />CELL_DEBUG_ERROR_BADF || 0x80510202 || Invalid session ID
|-
|-
| SYS_DECI3_EALREADYUSE || 0x80510203 || Session is already opened
| SYS_DECI3_EALREADYUSE<br />CELL_DEBUG_ERROR_ALREADYUSE || 0x80510203 || Session is already opened
|-
|-
| SYS_DECI3_EMFILE || 0x80510204 || Number of sessions that can be open simultaneously was exceeded
| SYS_DECI3_EMFILE<br />CELL_DEBUG_ERROR_MFILE || 0x80510204 || Number of sessions that can be open simultaneously was exceeded
|-
|-
| SYS_DECI3_EPKTSIZE || 0x80510205 || Send data is too large
| SYS_DECI3_EPKTSIZE<br />CELL_DEBUG_ERROR_PKTSIZE || 0x80510205 || Send data is too large
|-
|-
| SYS_DECI3_ENOHOSTIF || 0x80510206 || Not connected with host
| SYS_DECI3_ENOHOSTIF<br />CELL_DEBUG_ERROR_NOHOSTIF || 0x80510206 || Not connected with host
|-
|-
| SYS_DECI3_ENOSPACE || 0x80510207 || Send buffer is full
| SYS_DECI3_ENOSPACE<br />CELL_DEBUG_ERROR_NOSPACE || 0x80510207 || Send buffer is full
|-
|-
| SYS_DECI3_EPERM || 0x80510208 || Not in a state in which the function can be executed
| SYS_DECI3_EPERM<br />CELL_DEBUG_ERROR_PERM || 0x80510208 || Not in a state in which the function can be executed
|-
|-
| SYS_DECI3_ENOMEM || 0x80510209 || Not enough memory
| SYS_DECI3_ENOMEM<br />CELL_DEBUG_ERROR_NOMEM || 0x80510209 || Not enough memory
|-
|-
| SYS_DECI3_EBUSY || 0x8051020a || Timeout occurred
| SYS_DECI3_EBUSY<br />CELL_DEBUG_ERROR_BUSY || 0x8051020a || Timeout occurred
|-
|-
| SYS_DECI3_ENXIO || 0x8051020b || Communication device does not exist
| SYS_DECI3_ENXIO<br />CELL_DEBUG_ERROR_NXIO || 0x8051020b || Communication device does not exist
|-
|-
| SYS_DECI3_EFAULT || 0x8051020c || Internal error occurred
| SYS_DECI3_EFAULT<br />CELL_DEBUG_ERROR_FAULT || 0x8051020c || Internal error occurred
|-
|-
|}
|}


<noinclude>[[Category:Development]][[Category:Main]]</noinclude>
<noinclude>[[Category:Development]][[Category:Main]]</noinclude>

Latest revision as of 23:12, 19 July 2015

Debug errors (libdbg)[edit source]

Name Errorcode Remarks
CELL_DBG_EINVAL 0x80510002 Specified argument is invalid
CELL_DBG_EABORT 0x8051000C Processing has been aborted because of an abnormal state
CELL_DBG_ENULL 0x8051000E The pointer specified in the argument is NULL

Debug Font errors (libdbgfont)[edit source]

Name Errorcode Remarks
CELL_DBGFONT_ERROR_MUTEX_CREATE 0x80510101 Failed to create a mutex for exclusive control
CELL_DBGFONT_ERROR_MUTEX_DESTROY 0x80510102 Failed to destroy mutex
CELL_DBGFONT_ERROR_MUTEX_LOCK 0x80510103 Failed to lock the mutex
CELL_DBGFONT_ERROR_MALLOC 0x80510104 Allocation of main memory failed
CELL_DBGFONT_ERROR_TEMP_BUFFER 0x80510105 Internal buffer for printf functions overflowed
CELL_DBGFONT_ERROR_LABEL_BUFFER 0x80510106 Label buffer space not enough
CELL_DBGFONT_ERROR_PARAM 0x80510107 Inappropriate argument value
CELL_DBGFONT_ERROR_EXISTS 0x80510108 Library initialization attempted twice
CELL_DBGFONT_ERROR_NOT_INIT 0x80510109 Library not initialized
CELL_DBGFONT_ERROR_CG_PROFILE 0x8051010a Cg profile not supported
CELL_DBGFONT_ERROR_CONSOLE_ID 0x80510111 Inappropriate console ID
CELL_DBGFONT_ERROR_CONSOLE_FULL 0x80510112 No free console

DECI3 Systemcalls errors (libdeci3)[edit source]

Name Errorcode Remarks
SYS_DECI3_EINVAL
CELL_DEBUG_ERROR_INVAL
0x80510201 Invalid parameter
SYS_DECI3_EBADF
CELL_DEBUG_ERROR_BADF
0x80510202 Invalid session ID
SYS_DECI3_EALREADYUSE
CELL_DEBUG_ERROR_ALREADYUSE
0x80510203 Session is already opened
SYS_DECI3_EMFILE
CELL_DEBUG_ERROR_MFILE
0x80510204 Number of sessions that can be open simultaneously was exceeded
SYS_DECI3_EPKTSIZE
CELL_DEBUG_ERROR_PKTSIZE
0x80510205 Send data is too large
SYS_DECI3_ENOHOSTIF
CELL_DEBUG_ERROR_NOHOSTIF
0x80510206 Not connected with host
SYS_DECI3_ENOSPACE
CELL_DEBUG_ERROR_NOSPACE
0x80510207 Send buffer is full
SYS_DECI3_EPERM
CELL_DEBUG_ERROR_PERM
0x80510208 Not in a state in which the function can be executed
SYS_DECI3_ENOMEM
CELL_DEBUG_ERROR_NOMEM
0x80510209 Not enough memory
SYS_DECI3_EBUSY
CELL_DEBUG_ERROR_BUSY
0x8051020a Timeout occurred
SYS_DECI3_ENXIO
CELL_DEBUG_ERROR_NXIO
0x8051020b Communication device does not exist
SYS_DECI3_EFAULT
CELL_DEBUG_ERROR_FAULT
0x8051020c Internal error occurred