forked from KolibriOS/kolibrios
47f30eaa44
- Help via @notify git-svn-id: svn://kolibrios.org@8127 a494cfbc-eb01-0410-851d-a64ba20cac60
30 lines
658 B
C
Executable File
30 lines
658 B
C
Executable File
typedef unsigned int uint32_t;
|
|
|
|
static inline
|
|
int start_app(char *app_name, char *args){
|
|
#pragma pack(push, 1)
|
|
struct file_op_t
|
|
{
|
|
uint32_t fn;
|
|
uint32_t flags;
|
|
char* args;
|
|
uint32_t res1, res2;
|
|
char zero;
|
|
char* app_name __attribute__((packed));
|
|
} file_op;
|
|
#pragma pack(pop)
|
|
memset(&file_op, 0, sizeof(file_op));
|
|
file_op.fn = 7;
|
|
file_op.args = args;
|
|
file_op.app_name = app_name;
|
|
|
|
register int val;
|
|
asm volatile ("int $0x40":"=a"(val):"a"(70), "b"(&file_op));
|
|
|
|
return val;
|
|
}
|
|
|
|
void notify(char *text) {
|
|
start_app("/sys/@notify", text);
|
|
}
|