Changeset 526 for trunk


Ignore:
Timestamp:
Aug 30, 2018, 10:26:09 PM (6 years ago)
Author:
viala@…
Message:

Add explicit type to enum in syscall_numbers.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/syscalls/shared_include/syscalls_numbers.h

    r457 r526  
    1 #ifndef _SHARED_SYSCALLS_NUMBERS_H_
    2 #define _SHARED_SYSCALLS_NUMBERS_H_
     1/*
     2 * syscalls_numbers.c - Contains enum of the syscalls.
     3 *
     4 * Author    Alain Greiner (2018)
     5 *
     6 * Copyright (c) UPMC Sorbonne Universites
     7 *
     8 * This file is part of ALMOS-MKH.
     9 *
     10 * ALMOS-MKH is free software; you can redistribute it and/or modify it
     11 * under the terms of the GNU General Public License as published by
     12 * the Free Software Foundation; version 2.0 of the License.
     13 *
     14 * ALMOS-MKH is distributed in the hope that it will be useful, but
     15 * WITHOUT ANY WARRANTY; without even the implied warranty of
     16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     17 * General Public License for more details.
     18 *
     19 * You should have received a copy of the GNU General Public License
     20 * along with ALMOS-MKH; if not, write to the Free Software Foundation,
     21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
     22 */
     23
     24#ifndef _SYSCALLS_NUMBERS_H_
     25#define _SYSCALLS_NUMBERS_H_
    326
    427/******************************************************************************************
     
    629 * It must be kept consistent with the array defined in do_syscalls.c
    730 *****************************************************************************************/
    8 
    9 enum
    10 {
    11         SYS_THREAD_EXIT    = 0,
    12         SYS_THREAD_YIELD   = 1,
    13         SYS_THREAD_CREATE  = 2,
    14         SYS_THREAD_JOIN    = 3,
    15         SYS_THREAD_DETACH  = 4,
    16         SYS_THREAD_CANCEL  = 5,
    17         SYS_SEM            = 6,
    18         SYS_CONDVAR        = 7,
    19         SYS_BARRIER        = 8,
    20         SYS_MUTEX          = 9,
     31typedef enum {
     32    SYS_THREAD_EXIT    = 0,
     33    SYS_THREAD_YIELD   = 1,
     34    SYS_THREAD_CREATE  = 2,
     35    SYS_THREAD_JOIN    = 3,
     36    SYS_THREAD_DETACH  = 4,
     37    SYS_THREAD_CANCEL  = 5,
     38    SYS_SEM            = 6,
     39    SYS_CONDVAR        = 7,
     40    SYS_BARRIER        = 8,
     41    SYS_MUTEX          = 9,
    2142
    2243    SYS_EXIT           = 10,
    2344    SYS_MUNMAP         = 11,
    24         SYS_OPEN           = 12,
    25         SYS_MMAP           = 13,
    26         SYS_READ           = 14,
    27         SYS_WRITE          = 15,
    28         SYS_LSEEK          = 16,
    29         SYS_CLOSE          = 17,
    30         SYS_UNLINK         = 18,   
    31         SYS_PIPE           = 19,
     45    SYS_OPEN           = 12,
     46    SYS_MMAP           = 13,
     47    SYS_READ           = 14,
     48    SYS_WRITE          = 15,
     49    SYS_LSEEK          = 16,
     50    SYS_CLOSE          = 17,
     51    SYS_UNLINK         = 18,
     52    SYS_PIPE           = 19,
    3253
    33         SYS_CHDIR          = 20,
    34         SYS_MKDIR          = 21,
    35         SYS_MKFIFO         = 22,   
    36         SYS_OPENDIR        = 23,
    37         SYS_READDIR        = 24,
    38         SYS_CLOSEDIR       = 25,
    39         SYS_GETCWD         = 26,
    40         SYS_ISATTY         = 27,
    41         SYS_ALARM          = 28,   
    42         SYS_RMDIR          = 29,
     54    SYS_CHDIR          = 20,
     55    SYS_MKDIR          = 21,
     56    SYS_MKFIFO         = 22,
     57    SYS_OPENDIR        = 23,
     58    SYS_READDIR        = 24,
     59    SYS_CLOSEDIR       = 25,
     60    SYS_GETCWD         = 26,
     61    SYS_ISATTY         = 27,
     62    SYS_ALARM          = 28,
     63    SYS_RMDIR          = 29,
    4364
    44         SYS_UTLS           = 30, 
    45         SYS_CHMOD          = 31,
    46         SYS_SIGNAL         = 32,
    47         SYS_TIMEOFDAY      = 33,
    48         SYS_KILL           = 34,
    49         SYS_GETPID         = 35,
    50         SYS_FORK           = 36,
    51         SYS_EXEC           = 37,
    52         SYS_STAT           = 38,     
    53         SYS_WAIT           = 39,
     65    SYS_UTLS           = 30,
     66    SYS_CHMOD          = 31,
     67    SYS_SIGNAL         = 32,
     68    SYS_TIMEOFDAY      = 33,
     69    SYS_KILL           = 34,
     70    SYS_GETPID         = 35,
     71    SYS_FORK           = 36,
     72    SYS_EXEC           = 37,
     73    SYS_STAT           = 38,
     74    SYS_WAIT           = 39,
    5475
    5576    SYS_GET_CONFIG     = 40,
     
    5778    SYS_GET_CYCLE      = 42,
    5879    SYS_DISPLAY        = 43,
    59     SYS_UNDEFINED_44   = 44,   ///
    60         SYS_THREAD_SLEEP   = 45,
    61         SYS_THREAD_WAKEUP  = 46,
     80    SYS_UNDEFINED      = 44,   ///
     81    SYS_THREAD_SLEEP   = 45,
     82    SYS_THREAD_WAKEUP  = 46,
    6283    SYS_TRACE          = 47,
    6384    SYS_FG             = 48,
    6485    SYS_IS_FG          = 49,
     86} syscalls_t;
    6587
    66         SYSCALLS_NR        = 50,
    67 };
     88// Keep me concistant with enum above !
     89#define SYSCALLS_NR (50U)
    6890
    69 
    70 #endif
     91#endif // _SYSCALLS_NUMBERS_H_
Note: See TracChangeset for help on using the changeset viewer.