Changeset 7f1c620 in mainline for generic/src/sysinfo/sysinfo.c
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/sysinfo/sysinfo.c
r991779c5 r7f1c620 168 168 } 169 169 170 void sysinfo_set_item_val(const char *name, sysinfo_item_t **root, __nativeval)170 void sysinfo_set_item_val(const char *name, sysinfo_item_t **root, unative_t val) 171 171 { 172 172 if (root == NULL) … … 223 223 while (root != NULL) { 224 224 int i; 225 __nativeval = 0;225 unative_t val = 0; 226 226 char *vtype = NULL; 227 227 … … 279 279 } 280 280 281 __native sys_sysinfo_valid(__native ptr, __nativelen)281 unative_t sys_sysinfo_valid(unative_t ptr, unative_t len) 282 282 { 283 283 char *str; … … 293 293 } 294 294 295 __native sys_sysinfo_value(__native ptr, __nativelen)295 unative_t sys_sysinfo_value(unative_t ptr, unative_t len) 296 296 { 297 297 char *str;
Note:
See TracChangeset
for help on using the changeset viewer.