Tool/software: TI-RTOS
I have a project that is going to have several tasks, all working on a single set of Ethernet handles.
It seems to me that so far, each task has to open/close the file system with fdOpenSession/fdCloseSession separately.
My question is this:
I have one task that creates the file handles for the Ethernet communications, and if that is successfully completed, it will then start tasks to 'receive / send/ control / monitor' these processes.
As the tasks progress, a number of additional handles may be opened for additional communications.
Does each of these tasks have a unique file handle system, or do they all point to some kind of 'global' system? Reason I ask is that once the main task opens the handles, none of the sibling tasks seem to be able to receive / transmit items using the same handles.
Documentation on these things seems to be sorely lacking.
Later-
David