Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
SquirrelJME
Commits
11aa2dd0
Commit
11aa2dd0
authored
Dec 28, 2019
by
Stephanie Gawroriski
Browse files
Add Task ID for out-of-bound IPC calls.
parent
c354759c
Changes
3
Hide whitespace changes
Inline
Side-by-side
ratufacoat/sjmecon.h
View file @
11aa2dd0
...
...
@@ -635,6 +635,13 @@ extern "C"
/** The number of available properties. */
#define SJME_SUPERPROP_NUM_PROPERTIES SJME_JINT_C(4)
/*****************************************************************************
************************************ OTHER ***********************************
*****************************************************************************/
/** The Task ID for out of bounds IPC events. */
#define SJME_OOB_IPC_TASK SJME_JINT_C(0xFFFFFFFF)
/****************************************************************************/
/** Anti-C++. */
...
...
runt/apis/cldc-compact/cc/squirreljme/jvm/Constants.java
View file @
11aa2dd0
...
...
@@ -44,6 +44,10 @@ public interface Constants
public
static
final
byte
ARRAY_BASE_SIZE
=
20
;
/** Constant pool cell size. */
public
static
final
byte
POOL_CELL_SIZE
=
4
;
/** Bad magic number. */
public
static
final
int
BAD_MAGIC
=
0xE7E5E7E4
;
...
...
@@ -71,5 +75,9 @@ public interface Constants
/** Size of the header for configuration items. */
public
static
final
byte
CONFIG_HEADER_SIZE
=
4
;
/** The task ID for out-of-bound IPC events. */
public
static
final
int
OOB_IPC_TASK
=
0xFFFFFFFF
;
}
runt/klib/supervisor/cc/squirreljme/jvm/Constants.java
View file @
11aa2dd0
...
...
@@ -75,5 +75,9 @@ public interface Constants
/** Size of the header for configuration items. */
public
static
final
byte
CONFIG_HEADER_SIZE
=
4
;
/** The task ID for out-of-bound IPC events. */
public
static
final
int
OOB_IPC_TASK
=
0xFFFFFFFF
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment