Changeset 074444f in mainline for uspace/app/sbi/src/os
- Timestamp:
- 2010-04-10T11:15:33Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ef0fc3, 38aaacc2
- Parents:
- 23de644
- Location:
- uspace/app/sbi/src/os
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/os/helenos.c
r23de644 r074444f 38 38 #include "os.h" 39 39 40 /** Path to executable file via which we have been invoked. */ 41 static char *ef_path; 42 40 43 /* 41 44 * Using HelenOS-specific string API. … … 70 73 { 71 74 return str_cmp(a, b); 75 } 76 77 /** Return number of characters in string. */ 78 size_t os_str_length(const char *str) 79 { 80 return str_length(str); 72 81 } 73 82 … … 156 165 return EOK; 157 166 } 167 168 /** Store the executable file path via which we were executed. */ 169 void os_store_ef_path(char *path) 170 { 171 ef_path = path; 172 } 173 174 /** Return path to the Sysel library 175 * 176 * @return New string. Caller should deallocate it using @c free(). 177 */ 178 char *os_get_lib_path(void) 179 { 180 return os_str_dup("/src/sysel/lib"); 181 } -
uspace/app/sbi/src/os/os.h
r23de644 r074444f 33 33 int os_str_cmp(const char *a, const char *b); 34 34 char *os_str_dup(const char *str); 35 size_t os_str_length(const char *str); 35 36 int os_str_get_char(const char *str, int index, int *out_char); 36 37 void os_input_disp_help(void); … … 38 39 int os_exec(char *const cmd[]); 39 40 41 void os_store_ef_path(char *path); 42 char *os_get_lib_path(void); 40 43 41 44 #endif -
uspace/app/sbi/src/os/posix.c
r23de644 r074444f 29 29 /** @file POSIX-specific code. */ 30 30 31 #include <libgen.h> 31 32 #include <stdio.h> 32 33 #include <stdlib.h> … … 39 40 40 41 #include "os.h" 42 43 /** Path to executable file via which we have been invoked. */ 44 static char *ef_path; 41 45 42 46 /* … … 71 75 { 72 76 return strcmp(a, b); 77 } 78 79 /** Return number of characters in string. */ 80 size_t os_str_length(const char *str) 81 { 82 return strlen(str); 73 83 } 74 84 … … 146 156 return EOK; 147 157 } 158 159 /** Store the executable file path via which we were executed. */ 160 void os_store_ef_path(char *path) 161 { 162 ef_path = path; 163 } 164 165 /** Return path to the Sysel library 166 * 167 * @return New string. Caller should deallocate it using @c free(). 168 */ 169 char *os_get_lib_path(void) 170 { 171 return os_str_acat(dirname(ef_path), "/lib"); 172 }
Note:
See TracChangeset
for help on using the changeset viewer.
