Re: parameters passing problem in driver module

2001-02-20 Thread Erik Mouw
On Tue, Feb 20, 2001 at 04:07:55PM +0530, Srinivas Surabhi wrote: > In application program ,code for call to write system call is given > below... > #include > main() >{ > int count,fd; >fd=open("/dev/pseudo",O_RDWR); > write(fd,buff,5); > } >

parameters passing problem in driver module

2001-02-20 Thread Srinivas Surabhi
In application program ,code for call to write system call is given below... #include main() { int count,fd; fd=open("/dev/pseudo",O_RDWR); write(fd,buff,5); } In driver module code for getting the buffer and count #includ