> If the device is full-duplex how can I have one application
> reading it and another writing?

You either do file handle passing (funky) or normally one program runs the
other: ie

        open file
        fork()
        
        child:
                exec other app (which inherits file)
                exit

        parent:
                run code

Reply via email to