Changeset 102f641 in mainline for uspace/lib/c/include


Ignore:
Timestamp:
2019-09-02T19:01:50Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
25697163
Parents:
241f1985
Message:

Correcting syntax according to ccheck

Location:
uspace/lib/c/include
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/adt/dyn_array.h

    r241f1985 r102f641  
    6060        _dyn_array_initialize((dyn_array), sizeof(type))
    6161
    62 
    6362/** Dynamic array accessor
    6463 *
     
    6867        (*((type *) (dyn_array)->_data + index))
    6968
    70 
    7169/** Access last element
    7270 *
     
    7573#define dyn_array_last(dyn_array, type)                                        \
    7674        (*((type *) (dyn_array)->_data + ((dyn_array)->size - 1)))
    77 
    7875
    7976/** Insert item at given position, shift rest of array
     
    10198#define dyn_array_append(dyn_array, type, value)                               \
    10299        dyn_array_insert(dyn_array, type, (dyn_array)->size, (value))
    103 
    104100
    105101/** Dynamic array iteration
  • uspace/lib/c/include/ipc/common.h

    r241f1985 r102f641  
    4646/**
    4747 * IPC_FLAG_AUTOSTART_ is for use in brokers only. In clinet code use
    48  * IPC_AUTOSTART that includes implies blocking behavior. */
     48 * IPC_AUTOSTART that includes implies blocking behavior.
     49 */
    4950#define IPC_FLAG_AUTOSTART_  0x02
    5051
  • uspace/lib/c/include/ipc/services.h

    r241f1985 r102f641  
    6767#define SERVICE_NAME_VOLSRV   "volsrv"
    6868
    69 
    7069#define LOC_DEVICE_NAMESPACE         "devices"
    7170#define LOC_UNIT_NAMESPACE_SEPARATOR "__"
  • uspace/lib/c/include/ipc/taskman.h

    r241f1985 r102f641  
    3838#include <ipc/common.h>
    3939
    40 
    4140typedef enum {
    4241        TASKMAN_WAIT = IPC_FIRST_USER_METHOD,
  • uspace/lib/c/include/loader/pcb.h

    r241f1985 r102f641  
    6363        /** Session to taskman (typically spawn parent) */
    6464        async_sess_t *session_taskman;
    65        
     65
    6666        /** Current working directory. */
    6767        char *cwd;
  • uspace/lib/c/include/taskman_noasync.h

    r241f1985 r102f641  
    3636#define LIBC_TASKMAN_NOASYNC_H_
    3737
    38 
    3938/* Internal functions to be used by NS only */
    4039extern int taskman_intro_ns_noasync(void);
  • uspace/lib/c/include/types/task.h

    r241f1985 r102f641  
    5151} task_wait_t;
    5252
    53 typedef void (* task_event_handler_t)(task_id_t, int, task_exit_t, int);
     53typedef void (*task_event_handler_t)(task_id_t, int, task_exit_t, int);
    5454
    5555#endif
Note: See TracChangeset for help on using the changeset viewer.