Skip to content

Commit

Permalink
Fix fast mutex work area size
Browse files Browse the repository at this point in the history
As explained in the commit message of the parent commit, mutexes cannot
be locked from interrupts.

For reference on fast mutexes see:
https://github.com/DolceSDK/headers/commit/a7a21cbb4c0e4014fa39735b39ab33d0eb3e1197
  • Loading branch information
cuevavirus committed May 24, 2020
1 parent 67bf413 commit ff386fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debug/console.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

static int console_x = 16;
static int console_y = 16;
static SceKernelLwMutexWork mutex;
static int64_t mutex[8];

int console_init()
{
Expand Down

0 comments on commit ff386fc

Please sign in to comment.