kolibrios/programs/system/shell/cmd/cmd_lsmod.c
Doczom 5cbb298e24 add new function - lsmod
This function input list loaded drivers.

git-svn-id: svn://kolibrios.org@9780 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-04-23 21:37:05 +00:00

34 lines
896 B
C

struct service_str{
char name[16];
struct service_str* fd;
struct service_str* bk;
uint32_t base; // base addreass service for kernel_free
uint32_t entry; //unsigned drvEntry(int action, char *cmdline)
uint32_t srv_proc; // static int __stdcall service_proc(ioctl_t *my_ctl)
//void* srv_proc_kern;
};
int cmd_lsmod(char param[]) {
struct service_str* fd;
struct service_str* bk;
struct service_str srv_str;
asm_inline(
"int $0x40"
:"=b"(fd), "=c"(bk)
:"a"(68), "b"(31), "c"(1)
);
srv_str.fd = fd;
printf("%-*s Hendler Service_proc\n\r", 16, " Name");
while (1) {
asm_inline(
"int $0x40"
::"a"(68), "b"(31), "c"(2), "d"(fd), "D"(&srv_str)
);
printf("%-*s 0x%X 0x%X \n", 16, srv_str.name, fd, srv_str.srv_proc);
if (fd == bk) break;
fd = srv_str.fd;
};
return TRUE;
}