Selectable.selectRead

Try to read/write to the Selectable without blocking. If the operation would block, queue and link it with the sel_state

  1. void selectWrite(void* ptr, SelectState sel_state, int sel_id)
  2. void selectRead(void* ptr, SelectState sel_state, int sel_id)
    interface Selectable
    void
    selectRead
    (
    void* ptr
    ,
    SelectState sel_state
    ,
    int sel_id
    )

Parameters

ptr void*

pointer to the data for the select operation

sel_state SelectState

SelectState instace of the select call being executed

sel_id int

id of the select call being executed

Meta