diff options
author | toni <matzeton@googlemail.com> | 2016-09-12 23:26:23 +0200 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2016-09-12 23:26:23 +0200 |
commit | e3d0c979b3ab8a6611b23941ce90f8f0f7c18149 (patch) | |
tree | ed314c3b6a5f5bb95919317bedf5137c186d0402 /src/ui_ipc.c | |
parent | b8dbe6d96045bca500497dcd71a4db0e0b8a110e (diff) |
ui_ipc_msgclear + busy and error window
Diffstat (limited to 'src/ui_ipc.c')
-rw-r--r-- | src/ui_ipc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ui_ipc.c b/src/ui_ipc.c index fa73f28..cce7825 100644 --- a/src/ui_ipc.c +++ b/src/ui_ipc.c @@ -138,3 +138,12 @@ ui_ipc_msgcount(enum UI_IPC_MSQ e_mq) if (mq_getattr(msqs[e_mq], &m_attr) != 0) return -1; return m_attr.mq_curmsgs; } + +void +ui_ipc_msgclear(enum UI_IPC_MSQ e_mq) +{ + char ipc_buf[IPC_MQSIZ+1]; + while (ui_ipc_msgcount(e_mq) > 0) { + ui_ipc_msgrecv(e_mq, ipc_buf, 0); + } +} |