From 162b2a6a3c8d95dc3ad640a969fabdf839a8d382 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 12 Nov 2008 12:45:46 +0000 Subject: [PATCH] docs/random/wtay/poll-timeout: Quick braindump for a possible (not totally verified) atomic case. Original commit message from CVS: * docs/random/wtay/poll-timeout: Quick braindump for a possible (not totally verified) atomic case. --- ChangeLog | 5 +++ docs/random/wtay/poll-timeout | 72 ++++++++++++++++++++++++++++++++++- 2 files changed, 75 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a9cfda4940..dc24038947 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-11-12 Wim Taymans + + * docs/random/wtay/poll-timeout: + Quick braindump for a possible (not totally verified) atomic case. + 2008-11-12 Sebastian Dröge * gst/gstregistrybinary.c: (gst_registry_binary_write_chunk), diff --git a/docs/random/wtay/poll-timeout b/docs/random/wtay/poll-timeout index 30f38285a1..ef6e91bf07 100644 --- a/docs/random/wtay/poll-timeout +++ b/docs/random/wtay/poll-timeout @@ -1,3 +1,6 @@ +WITH LOCK +********* + create clock id: id->state = OK; @@ -42,10 +45,75 @@ waiting for id: unschedule id: lock - /* when it leaves the poll, it'll detect the unscheduled. */ - id->state = unscheduled; /* if it's busy waiting in poll, write to the fd */ if (id->state == busy) { write (fd) } + /* when it leaves the poll, it'll detect the unscheduled. */ + id->state = unscheduled; unlock + + + +ATOMIC +****** + +create clock id: + + id->state = OK; + + +waiting for id: + + /* once state changes to != OK, the id cannot be used anymore */ + while (g_atomic_int_compare_and_exchange (&id->state, OK, BUSY) { + + ret = gstpoll (timeout); + + /* two things can happen here, either the entry is BUSY or UNSCHEDULED, + * first check if it was busy. */ + if (g_atomic_int_compare_and_exchange (&id->state, BUSY, OK) { + /* we got unscheduled, see if it was because we timed out or some other + * id got unscheduled */ + if (ret != 0) { + lock + /* some other id got unlocked */ + /* wait until it reads the fd and signals us */ + while (waiters) + cond_wait () + unlock + } + else { + /* we timed out update the status. */ + id->state = OK | EARLY; + break; + } + } + else if (g_atomic_int_compare_and_exchange (&id->state, UNSCHEDULED, OK) { + /* id became unscheduled, read the fd and broadcast */ + lock + read (fd) + waiters-- + cond_broadcast () + unlock + id->state = UNSCHEDULED; + break; + } + } + + return id->state; + + +unschedule id: + + if (g_atomic_int_compare_and_exchange (&id->state, BUSY, UNSCHEDULED) { + /* if it's busy waiting in poll, write to the fd */ + lock + waiters++ + write (fd) + unlock + } + else { + /* was not waiting, just mark unscheduled */ + g_atomic_int_set (id->state, UNSCHEDULED); + }