2007-04-22 07:11:00 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2007 Netlabs
|
|
|
|
|
* Copyright (c) 2006 Mozilla Corporation
|
|
|
|
|
* Copyright (c) 2006 Red Hat, Inc.
|
2011-08-31 16:42:03 +02:00
|
|
|
* Copyright (c) 2011 Andrea Canciani
|
2007-04-22 07:11:00 -04:00
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
|
* and its documentation for any purpose is hereby granted without
|
|
|
|
|
* fee, provided that the above copyright notice appear in all copies
|
|
|
|
|
* and that both that copyright notice and this permission notice
|
|
|
|
|
* appear in supporting documentation, and that the name of
|
|
|
|
|
* the authors not be used in advertising or publicity pertaining to
|
|
|
|
|
* distribution of the software without specific, written prior
|
|
|
|
|
* permission. The authors make no representations about the
|
|
|
|
|
* suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL,
|
|
|
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
|
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Authors: Peter Weilbacher <mozilla@weilbacher.org>
|
2010-06-24 14:59:18 +03:00
|
|
|
* Vladimir Vukicevic <vladimir@pobox.com> (win32/linux code)
|
|
|
|
|
* Carl Worth <cworth@cworth.org> (win32/linux code)
|
2011-08-31 16:42:03 +02:00
|
|
|
* Andrea Canciani <ranma42@gmail.com>
|
2007-04-22 07:11:00 -04:00
|
|
|
*/
|
|
|
|
|
|
2011-06-21 18:12:29 +02:00
|
|
|
#include "cairo-perf.h"
|
2011-08-31 16:42:03 +02:00
|
|
|
#include "../src/cairo-time-private.h"
|
2011-06-21 18:12:29 +02:00
|
|
|
|
2011-08-31 16:42:03 +02:00
|
|
|
#if HAVE_UNISTD_H
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
2011-06-21 18:12:29 +02:00
|
|
|
|
2021-04-17 23:48:15 +01:00
|
|
|
#if defined(_WIN32)
|
2011-08-31 16:42:03 +02:00
|
|
|
#include <windows.h>
|
|
|
|
|
#elif defined(_POSIX_PRIORITY_SCHEDULING)
|
|
|
|
|
#include <sched.h>
|
|
|
|
|
#endif
|
2007-04-22 07:11:00 -04:00
|
|
|
|
|
|
|
|
|
2011-08-31 16:42:03 +02:00
|
|
|
/* timers */
|
|
|
|
|
static cairo_time_t timer;
|
2007-04-22 07:11:00 -04:00
|
|
|
static cairo_perf_timer_synchronize_t cairo_perf_timer_synchronize = NULL;
|
|
|
|
|
static void *cairo_perf_timer_synchronize_closure = NULL;
|
2011-08-31 16:42:03 +02:00
|
|
|
|
2007-04-22 07:11:00 -04:00
|
|
|
void
|
|
|
|
|
cairo_perf_timer_set_synchronize (cairo_perf_timer_synchronize_t synchronize,
|
2010-06-24 14:59:18 +03:00
|
|
|
void *closure)
|
2007-04-22 07:11:00 -04:00
|
|
|
{
|
|
|
|
|
cairo_perf_timer_synchronize = synchronize;
|
|
|
|
|
cairo_perf_timer_synchronize_closure = closure;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-08-31 16:42:03 +02:00
|
|
|
cairo_perf_timer_start (void)
|
|
|
|
|
{
|
|
|
|
|
timer = _cairo_time_get ();
|
2007-04-22 07:11:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-08-31 16:42:03 +02:00
|
|
|
cairo_perf_timer_stop (void)
|
|
|
|
|
{
|
2013-01-31 14:06:48 +00:00
|
|
|
if (cairo_perf_timer_synchronize)
|
|
|
|
|
cairo_perf_timer_synchronize (cairo_perf_timer_synchronize_closure);
|
|
|
|
|
|
2011-08-31 16:42:03 +02:00
|
|
|
timer = _cairo_time_get_delta (timer);
|
2007-04-22 07:11:00 -04:00
|
|
|
}
|
|
|
|
|
|
2011-08-31 16:42:03 +02:00
|
|
|
cairo_time_t
|
|
|
|
|
cairo_perf_timer_elapsed (void)
|
|
|
|
|
{
|
|
|
|
|
return timer;
|
2007-04-22 07:11:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-08-31 16:42:03 +02:00
|
|
|
cairo_perf_yield (void)
|
|
|
|
|
{
|
2007-04-22 07:11:00 -04:00
|
|
|
/* try to deactivate this thread until the scheduler calls it again */
|
2011-08-31 16:42:03 +02:00
|
|
|
|
2021-04-17 23:48:15 +01:00
|
|
|
#if defined(_WIN32)
|
2011-08-31 16:42:03 +02:00
|
|
|
SleepEx(0, TRUE);
|
|
|
|
|
#elif defined(_POSIX_PRIORITY_SCHEDULING)
|
|
|
|
|
sched_yield ();
|
|
|
|
|
#else
|
|
|
|
|
sleep (0);
|
|
|
|
|
#endif
|
2007-04-22 07:11:00 -04:00
|
|
|
}
|