s/events_loop/wait_event/

pollfd
Karchnu 2020-07-06 08:43:06 +02:00
parent 8439cc0f18
commit 4c45fb7d12
9 changed files with 9 additions and 9 deletions

View File

@ -69,7 +69,7 @@ void interactive ()
printf ("msg to send: ");
fflush (stdout);
TEST_IPC_WAIT_EVENT_Q (ipc_events_loop (ctx, &event, &timer), EXIT_FAILURE);
TEST_IPC_WAIT_EVENT_Q (ipc_wait_event (ctx, &event, &timer), EXIT_FAILURE);
switch (event.type) {
case IPC_EVENT_TYPE_EXTRA_SOCKET:
{

View File

@ -45,7 +45,7 @@ void main_loop ()
while (1) {
// ipc_wait_event provides one event at a time
// warning: event->m is free'ed if not NULL
TEST_IPC_WAIT_EVENT_Q (ipc_events_loop (ctx, &event, &timer), EXIT_FAILURE);
TEST_IPC_WAIT_EVENT_Q (ipc_wait_event (ctx, &event, &timer), EXIT_FAILURE);
switch (event.type) {
case IPC_EVENT_TYPE_CONNECTION:

View File

@ -62,7 +62,7 @@ void interactive ()
printf ("msg to send: ");
fflush (stdout);
TEST_IPC_WAIT_EVENT_Q (ipc_events_loop (ctx, &event, &timer), EXIT_FAILURE);
TEST_IPC_WAIT_EVENT_Q (ipc_wait_event (ctx, &event, &timer), EXIT_FAILURE);
switch (event.type) {
case IPC_EVENT_TYPE_TIMER:{

View File

@ -165,7 +165,7 @@ void main_loop (int argc, char **argv)
// warning: event->m is free'ed if not NULL
ipc_ctx_print (ctx);
TEST_IPC_WAIT_EVENT_Q (ipc_events_loop (ctx, &event, &timer), EXIT_FAILURE);
TEST_IPC_WAIT_EVENT_Q (ipc_wait_event (ctx, &event, &timer), EXIT_FAILURE);
switch (event.type) {
case IPC_EVENT_TYPE_TIMER:{

View File

@ -23,7 +23,7 @@ int main(int argc, char * argv[])
printf ("func 01 - service polling...\n");
// listen only for a single client
TEST_IPC_Q(ipc_events_loop (&ctx, &event, &timer), EXIT_FAILURE);
TEST_IPC_Q(ipc_wait_event (&ctx, &event, &timer), EXIT_FAILURE);
switch (event.type) {
case IPC_EVENT_TYPE_TIMER : {

View File

@ -56,7 +56,7 @@ void interactive ()
while (1) {
printf ("msg to send: ");
fflush (stdout);
TEST_IPC_Q(ipc_events_loop (&ctx, &event, &timer), EXIT_FAILURE);
TEST_IPC_Q(ipc_wait_event (&ctx, &event, &timer), EXIT_FAILURE);
switch (event.type) {
case IPC_EVENT_TYPE_TIMER: {

View File

@ -27,7 +27,7 @@ void main_loop ()
while(1) {
// ipc_wait_event provides one event at a time
// warning: event->m is free'ed if not NULL
ret = ipc_events_loop (ctx, &event, &timer);
ret = ipc_wait_event (ctx, &event, &timer);
if (ret.error_code != IPC_ERROR_NONE && ret.error_code != IPC_ERROR_CLOSED_RECIPIENT) {
PRINTERR(ret,"service poll event");

View File

@ -35,7 +35,7 @@ void read_message (struct ipc_ctx *ctx)
// ctx, index, message
TEST_IPC_Q(ipc_read (ctx, 0 /* only one server here */, &m), EXIT_FAILURE);
ipc_events_loop (ctx, &event, &timer);
ipc_wait_event (ctx, &event, &timer);
switch (event.type) {
case IPC_EVENT_TYPE_MESSAGE : {

View File

@ -24,7 +24,7 @@ int main_loop(int argc, char * argv[])
printf ("func 01 - service polling...\n");
// listen only for a single client
while (1) {
TEST_IPC_WAIT_EVENT_Q (ipc_events_loop (&ctx, &event, &timer), EXIT_FAILURE);
TEST_IPC_WAIT_EVENT_Q (ipc_wait_event (&ctx, &event, &timer), EXIT_FAILURE);
switch (event.type) {
case IPC_EVENT_TYPE_TIMER : {