CeDOS - kernel/syscall.h

kernel/syscall.h (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
/*! \file
 * Provides the syscall interface for user processes
 */
#ifndef SYSCALL_H
#define SYSCALL_H

/*!
 * Installs the syscall interrupt to INT 0x30
 * \return 1 on success, 0 on failure
 */
int syscall_init(void);

#endif