Re: operation sequence of ioctl's

2005-01-24 Thread Andrey Simonenko
On Sun, Jan 23, 2005 at 01:26:50PM +0100, Anton W?llert wrote: my question is how a ioctl is called when i use int ioctl(fd ) from userland. i think first, a trap is generated through the handler in exeption.S, that calls the routine for system-calls, and that calls via the

operation sequence of ioctl's

2005-01-23 Thread Anton Wöllert
Hello, my question is how a ioctl is called when i use int ioctl(fd ) from userland. i think first, a trap is generated through the handler in exeption.S, that calls the routine for system-calls, and that calls via the syscall-vector-table the function sys_ioctl (? i think). by the way, where