Add support for Nanos6 progress events

This commit is contained in:
Rodrigo Arias 2023-03-16 16:43:05 +01:00 committed by Rodrigo Arias Mallo
parent d7caca2a37
commit 35de33e0f9

View File

@ -36,12 +36,10 @@ static const int ss_table[256][256][3] = {
['r'] = { CHSS, PUSH, ST_RESUME },
['R'] = { CHSS, POP, ST_RESUME },
['*'] = { CHSS, IGN, -1 },
['i'] = { CH_IDLE, PUSH, ST_WORKER_IDLE },
['I'] = { CH_IDLE, POP, ST_WORKER_IDLE },
},
['P'] = { /* TODO: Ignore progress events for now */
['r'] = { CHSS, IGN, -1 },
['p'] = { CHSS, IGN, -1 },
['P'] = {
['r'] = { CH_IDLE, PUSH, ST_WORKER_IDLE },
['p'] = { CH_IDLE, POP, ST_WORKER_IDLE },
},
['C'] = {
['['] = { CHSS, PUSH, ST_TASK_CREATING },