Changeset 1083
- Timestamp:
- 10/04/08 23:56:00 (3 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/keobject/kernel/module.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/keobject/kernel/module.c
r1075 r1083 420 420 return 0; 421 421 } 422 423 int ModuleRequest(const char* fmt, ...) 424 { 425 VaList list; 426 char* name; 427 428 VaStart(list, fmt); 429 name = vasprintf(fmt, list); 430 VaEnd(list); 431 432 /* TODO: Call userspace service that will load modules based on name, device 433 * ID or lack of system call 434 */ 435 436 MemFree(name); 437 438 return 0; 439 }