notify_thread_app rewritten

This commit is contained in:
Frederic Culot 2009-08-09 15:34:56 +00:00
parent a0117296b4
commit 3c9d6c13cc
2 changed files with 14 additions and 9 deletions

View File

@ -1,3 +1,7 @@
2009-08-09 Frederic Culot <frederic@culot.org>
* src/notify.c (notify_thread_app): rewritten
2009-08-02 Frederic Culot <frederic@culot.org>
* src/args.c: help on '--status' flag added

View File

@ -1,4 +1,4 @@
/* $calcurse: notify.c,v 1.44 2009/08/02 09:30:01 culot Exp $ */
/* $calcurse: notify.c,v 1.45 2009/08/09 15:34:56 culot Exp $ */
/*
* Calcurse - text-based organizer
@ -426,21 +426,22 @@ notify_thread_app (void *arg)
{
struct notify_app_s tmp_app;
(void)notify_get_next (&tmp_app);
if (!notify_get_next (&tmp_app))
pthread_exit ((void *)0);
pthread_mutex_lock (&notify_app.mutex);
if (tmp_app.got_app)
if (!tmp_app.got_app)
{
notify_update_app (tmp_app.time, tmp_app.state, tmp_app.txt);
notify_free_app ();
}
else
{
notify_free_app ();
notify_app.got_app = 0;
notify_app.txt = 0;
if (!notify_same_item (tmp_app.time))
notify_update_app (tmp_app.time, tmp_app.state, tmp_app.txt);
}
pthread_mutex_unlock (&notify_app.mutex);
if (tmp_app.txt != NULL)
if (tmp_app.txt)
mem_free (tmp_app.txt);
notify_update_bar ();