Wei DING wrote:
> 
> I know nothing about ioctl() call.
> Who can let me know the following problems.
> 
> 1. Whether can I be promised a ioctl() call to communicate
> with other module in my realtime module?
>  If can, how to realize it?
> 
> 2. Whether shall I be promised to make a ioctl function
> in my realtime module to provide ioctl() call
> to user process or other module ?

ioctls are used to provide non-standard services for UNIX device
drivers.  These are things that don't fit into the usual
open/close/read/write/seek model.  You can use ioctl for user->kernel
communication.  You shouldn't use it directly for user->rt-modules.

You can't normally use it for kernel->user communications.

Regards, Stuart.

--- [rtl] ---
To unsubscribe:
echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR
echo "unsubscribe rtl <Your_email>" | mail [EMAIL PROTECTED]
----
For more information on Real-Time Linux see:
http://www.rtlinux.org/~rtlinux/

Reply via email to