Changeset 2c577e0b in mainline for uspace/lib/c/include/ipc


Ignore:
Timestamp:
2011-01-29T11:29:35Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
64d2b10
Parents:
9c81703
Message:
  • implement service_realtime_share_in()
  • cstyle changes in time.c
Location:
uspace/lib/c/include/ipc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/ns.h

    r9c81703 r2c577e0b  
    3737
    3838#include <sys/types.h>
    39 #include <ipc/ipc.h>
     39#include <ipc/common.h>
    4040
    4141typedef enum {
     
    5151
    5252extern wchar_t *service_klog_share_in(size_t *);
     53extern void *service_realtime_share_in(void);
    5354
    5455#endif
  • uspace/lib/c/include/ipc/services.h

    r9c81703 r2c577e0b  
    6666} services_t;
    6767
    68 /* Memory area to be received from NS */
    69 #define SERVICE_MEM_REALTIME    1
    70 #define SERVICE_MEM_KLOG        2
     68/* Memory areas to be received from NS */
     69typedef enum {
     70        SERVICE_MEM_REALTIME = 1,
     71        SERVICE_MEM_KLOG = 2
     72} mem_services_t;
    7173
    7274#endif
Note: See TracChangeset for help on using the changeset viewer.