Ignore:
Timestamp:
May 22, 2019, 4:09:18 PM (5 years ago)
Author:
coas-nagasima
Message:

ファイルディスクリプタ処理を更新

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_rx/trunk/ntshell/src/syscall.c

    r374 r387  
    300300}
    301301
    302 long SYS_rt_sigaction(long a, long b, long c) {
    303         return shell_sigaction((int)a, (const struct sigaction *)b, (struct sigaction *)c);
     302long SYS_rt_sigaction(long a, long b, long c, long d) {
     303        return shell_sigaction((int)a, (const struct k_sigaction *)b, (struct k_sigaction *)c, (size_t)d);
    304304}
    305305
     
    388388}
    389389
     390long SYS_nanosleep(long a, long b)
     391{
     392        return shell_nanosleep((const struct timespec *)a, (struct timespec *)b);
     393}
     394
    390395long SYS_dup()
    391396{
Note: See TracChangeset for help on using the changeset viewer.