This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

IPC Notify C6678 what are the 5 reserved events ?

Hello everyone,

On c6678 when configuring a Notify application, there is a parameter called "reservedEvents"

its default value is 5. Meaning the minimum number of events I can allow is 6 (5 reserved one for my application).

However I only found these two events:
NameServerRemoteNotify.notifyEventId = 4
TransportShm.notifyEventId = 2.

Are they any others ? like 0,1, 3, 5.

Thank you
Regards
Clément

  • Clement,

    There were other modules which are not part of the general IPC that required their own reserved Notify event, however, these are not available on c6678.  Like for example RingIO and FrameQ.  So in short you could decrease the number of reserved event but you would also have to change the NameServerRemoteNotify event to something smaller.

    Judah

  • Judah,

    Thanks for the answer. I wanted to be sure as in my application I already used :

    Notify.numEvents = 3; // 2 reserved, 1 for the application
    Notify.reservedEvents = 2; //NameServer + TransportShm

    NameServerRemoteNotify.notifyEventId = 0; 
    TransportShm.notifyEventId = 1; 

    Question closed.

    Clément