Changeset e2e56e67 in mainline for uspace/srv
- Timestamp:
- 2012-02-03T16:46:10Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 06295a9
- Parents:
- f834f90d
- Location:
- uspace/srv
- Files:
-
- 4 added
- 3 edited
-
ethip/Makefile (added)
-
ethip/ethip.c (added)
-
inet/Makefile (modified) (1 diff)
-
inet/inet.c (modified) (3 diffs)
-
inet/inet_link.c (added)
-
inet/inet_link.h (added)
-
loc/loc.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/inet/Makefile
rf834f90d re2e56e67 31 31 32 32 SOURCES = \ 33 inet.c 33 inet.c \ 34 inet_link.c 34 35 35 36 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/inet/inet.c
rf834f90d re2e56e67 48 48 49 49 #include "inet.h" 50 #include "inet_link.h" 50 51 51 52 #define NAME "inet" … … 76 77 return EEXIST; 77 78 } 79 80 rc = inet_link_discovery_start(); 81 if (rc != EOK) 82 return EEXIST; 78 83 79 84 return EOK; … … 238 243 int rc; 239 244 240 printf(NAME ": HelenOS Internet Protocol service ");245 printf(NAME ": HelenOS Internet Protocol service\n"); 241 246 242 247 if (log_init(NAME, LVL_DEBUG) != EOK) { 243 printf(NAME ": Failed to initialize logging. ");248 printf(NAME ": Failed to initialize logging.\n"); 244 249 return 1; 245 250 } -
uspace/srv/loc/loc.c
rf834f90d re2e56e67 1296 1296 categ_dir_add_cat(&cdir, cat); 1297 1297 1298 cat = category_new("iplink"); 1299 categ_dir_add_cat(&cdir, cat); 1300 1298 1301 cat = category_new("keyboard"); 1299 1302 categ_dir_add_cat(&cdir, cat);
Note:
See TracChangeset
for help on using the changeset viewer.
