Changeset 7bf29e5 in mainline for uspace/srv/system/system.h
- Timestamp:
- 2025-01-09T11:29:38Z (7 months ago)
- Children:
- a5c2960e
- Parents:
- bc3d695 (diff), 4e1221c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/system/system.h
rbc3d695 r7bf29e5 1 1 /* 2 * Copyright (c) 2013 Jiri Svoboda 2 * Copyright (c) 2024 Jiri Svoboda 3 * Copyright (c) 2006 Martin Decky 3 4 * All rights reserved. 4 5 * … … 27 28 */ 28 29 29 /** @addtogroup inetsrv30 /** @addtogroup system 30 31 * @{ 31 32 */ 32 33 /** 33 34 * @file 34 * @brief35 35 */ 36 36 37 #ifndef INETSRV_H_38 #define INETSRV_H_37 #ifndef SYSTEM_H 38 #define SYSTEM_H 39 39 40 #include <adt/list.h> 41 #include <ipc/loc.h> 40 #include <system_srv.h> 41 42 #define NAME "system" 42 43 43 44 typedef struct { 44 link_t link_list; 45 service_id_t svc_id; 46 char *svc_name; 47 } ncs_link_t; 45 system_srv_t srv; 46 } sys_srv_t; 48 47 49 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.