Displaying 8 results from an estimated 8 matches for "gtimer".
Did you mean:
timer
2008 Jan 29
2
yum fails with invalid dependency on sqlite
...100% |=========================| 1.1 kB 00:00
addons 100% |=========================| 951 B 00:00
Reading repository metadata in from local files
primary.xml.gz 100% |=========================| 74 kB 00:01
(process:1999): GLib-CRITICAL **: file gtimer.c: line 106
(g_timer_stop): assertion `timer != NULL' failed
(process:1999): GLib-CRITICAL **: file gtimer.c: line 88
(g_timer_destroy): assertion `timer != NULL' failed
Traceback (most recent call last):
File "/usr/bin/yum", line 29, in ?
yummain.main(sys.argv[1:])
File...
2024 Oct 22
1
invalid permissions
...) than chlfct gives to it.
That must be the source of the error. Adding the missing arguments to
the function calls avoids the crash:
--- quantreg/src/chlfct.f 2019-08-06 15:30:35.000000000 +0300
+++ quantreg/src/chlfct.f 2024-10-22 12:35:55.000000000 +0300
@@ -113,16 +113,20 @@
timbeg = gtimer()
if (level .eq. 1) then
call blkfct(m,nsuper,xsuper,snode,split,xlindx,lindx,xlnz,
- & lnz,iwsiz,iwork,tmpsiz,tmpvec,ierr,mmpy1,smxpy1)
+ & lnz,iwsiz,iwork,tmpsiz,tmpvec,ierr,mmpy1,smxpy1,
+ & tiny, large)
el...
2007 Oct 28
0
5 commits - autogen.sh configure.ac libswfdec-gtk/Makefile.am libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_video.c libswfdec/swfdec_player.c test/trace
...9c9992978d134e0c23e68e8ce3cd
Author: Benjamin Otte <otte at gnome.org>
Date: Mon Oct 29 00:03:58 2007 +0100
require GThread for Swfdec.
This is necessary to not get weird bugs when the gthread library is initialized
late by calling gst_init(). In particular, this can cause GTimer to do weird
things and cause players to abort due to max-runtime being exceeded.
diff --git a/configure.ac b/configure.ac
index 4f164b0..5708323 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,20 +73,14 @@ dnl Check for essential libraries first:
dnl ====================================...
2007 Nov 01
0
4 commits - libswfdec/swfdec_sound_object.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c test/crashfinder.c test/Makefile.am
...+int
+main (int argc, char **argv)
+{
+ GOptionContext *context;
+ GError *err;
+ SwfdecPlayer *player;
+ SwfdecLoader *loader;
+ guint i;
+ cairo_surface_t *surface;
+ cairo_t *cr;
+ gboolean aborts;
+ glong play_per_file = 30;
+ glong max_per_file = 60;
+ glong max_per_advance = 10;
+ GTimer *timer;
+ char **filenames = NULL;
+ const GOptionEntry entries[] = {
+ {
+ "play-time", 'p', 0, G_OPTION_ARG_INT, &play_per_file,
+ "How many seconds will be played from each file (default 30)", NULL
+ },
+ {
+ "max-per-file", ...
2024 Oct 22
1
invalid permissions
Gurus:
I have a new version of my quantreg package with minimal changes, mainly to fix some obscure fortran problems. It fails R CMD check ?as-cran with the error:
Running examples in ?quantreg-Ex.R? failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: plot.rqss
> ### Title: Plot Method for rqss Objects
2007 Oct 22
0
6 commits - doc/Makefile.am doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_internal.h libswfdec/swfdec_player.c libswfdec/swfdec_player.h
...- a/libswfdec/swfdec_player_internal.h
+++ b/libswfdec/swfdec_player_internal.h
@@ -116,6 +116,8 @@ struct _SwfdecPlayer
GList * timeouts; /* list of events, sorted by timestamp */
guint tick; /* next tick */
SwfdecTimeout iterate_timeout; /* callback for iterating */
+ GTimer * runtime; /* for checking how long we've been running */
+ gulong max_runtime; /* maximum number of seconds the player may run */
/* iterating */
GList * movies; /* list of all moveis that want to be iterated */
SwfdecRingBuffer * actions; /* all actions we've queued up s...
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_resource.c
...,6 +48,8 @@ struct _SwfdecTimeout {
void (* free) (SwfdecTimeout *advance);
};
+#define SWFDEC_PLAYER_N_ACTION_QUEUES 4
+
struct _SwfdecPlayer
{
SwfdecAsContext context;
@@ -118,13 +121,11 @@ struct _SwfdecPlayer
SwfdecTimeout iterate_timeout; /* callback for iterating */
GTimer * runtime; /* for checking how long we've been running */
gulong max_runtime; /* maximum number of seconds the player may run */
- /* iterating */
- GList * movies; /* list of all moveis that want to be iterated */
- SwfdecRingBuffer * actions; /* all actions we've queued up s...
2008 Jan 07
0
12 commits - configure.ac doc/swfdec.types Makefile.am test/crashfinder.c test/dump.c test/Makefile.am test/swfdec-extract.c test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_list.c test/swfedit_list.h
...-int
-main (int argc, char **argv)
-{
- GOptionContext *context;
- GError *err;
- SwfdecPlayer *player;
- SwfdecLoader *loader;
- guint i;
- cairo_surface_t *surface;
- cairo_t *cr;
- gboolean aborts;
- glong play_per_file = 30;
- glong max_per_file = 60;
- glong max_per_advance = 10;
- GTimer *timer;
- char **filenames = NULL;
- const GOptionEntry entries[] = {
- {
- "play-time", 'p', 0, G_OPTION_ARG_INT, &play_per_file,
- "How many seconds will be played from each file (default 30)", NULL
- },
- {
- "max-per-file", ...