mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-08-15 09:55:46 -04:00
Implement preload_store
This commit is contained in:
parent
121d991857
commit
cb8bdab5a5
4 changed files with 71 additions and 16 deletions
|
@ -35,7 +35,13 @@ int syscall(syscall_t *ctx)
|
|||
break;
|
||||
|
||||
case PRELOAD_STORE:
|
||||
return preload_store(&part_table);
|
||||
return preload_store(&part_table, ctx->offset, ctx->data,
|
||||
ctx->size);
|
||||
break;
|
||||
|
||||
case PRELOAD_STORE_FINALIZE:
|
||||
return preload_store_finalize(&part_table, ctx->offset,
|
||||
ctx->data, ctx->size);
|
||||
break;
|
||||
|
||||
case PRELOAD_DELETE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue