mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
Added test app
Original commit message from CVS: Added test app
This commit is contained in:
parent
5894c0376a
commit
8b61345f9e
2 changed files with 96 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = threadstate1 threadstate2 threadstate3 threadstate4 threadstate5
|
||||
noinst_PROGRAMS = threadstate1 threadstate2 threadstate3 threadstate4 threadstate5 test1
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
|
|
95
tests/threadstate/test1.c
Normal file
95
tests/threadstate/test1.c
Normal file
|
@ -0,0 +1,95 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
GMutex *mutex;
|
||||
GCond *cond;
|
||||
} ThreadInfo;
|
||||
|
||||
static void*
|
||||
thread_loop (void *arg)
|
||||
{
|
||||
ThreadInfo *info = (ThreadInfo *) arg;
|
||||
|
||||
g_print ("thread: entering %p\n", info);
|
||||
|
||||
g_print ("thread: lock\n");
|
||||
g_mutex_lock (info->mutex);
|
||||
g_print ("thread: signal spinup\n");
|
||||
g_cond_signal (info->cond);
|
||||
|
||||
g_print ("thread: wait ACK\n");
|
||||
g_cond_wait (info->cond, info->mutex);
|
||||
g_print ("thread: signal\n");
|
||||
g_cond_signal (info->cond);
|
||||
g_print ("thread: unlock\n");
|
||||
g_mutex_unlock (info->mutex);
|
||||
|
||||
g_print ("thread: exit\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
gint
|
||||
main (gint argc, gchar *argv[])
|
||||
{
|
||||
ThreadInfo *info;
|
||||
GThread *thread;
|
||||
GError *error = NULL;
|
||||
|
||||
if (!g_thread_supported ())
|
||||
g_thread_init (NULL);
|
||||
|
||||
|
||||
info = g_new (ThreadInfo, 1);
|
||||
info->mutex = g_mutex_new ();
|
||||
info->cond = g_cond_new ();
|
||||
|
||||
g_print ("main: lock\n");
|
||||
g_mutex_lock (info->mutex);
|
||||
|
||||
thread = g_thread_create (thread_loop,
|
||||
info,
|
||||
TRUE,
|
||||
&error);
|
||||
|
||||
if (error != NULL) {
|
||||
g_print ("Unable to start thread: %s\n", error->message);
|
||||
g_error_free (error);
|
||||
return -1;
|
||||
}
|
||||
|
||||
g_print ("main: wait spinup\n");
|
||||
g_cond_wait (info->cond, info->mutex);
|
||||
|
||||
g_print ("main: signal ACK\n");
|
||||
g_cond_signal (info->cond);
|
||||
g_print ("main: wait\n");
|
||||
g_cond_wait (info->cond, info->mutex);
|
||||
g_print ("main: unlock\n");
|
||||
g_mutex_unlock (info->mutex);
|
||||
|
||||
g_print ("main: join\n");
|
||||
g_thread_join (thread);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in a new issue