search for: not_reached

Displaying 4 results from an estimated 4 matches for "not_reached".

2007 Jun 05
4
CentOS 5 Issues Booting Under VMWare
...in it takes over an hour to boot CentOS 5 on a machine that boots CentOS 3 & 4 in less than one minute). Then, after an hour of slowly watching the messages go by on the console and the CPU of the host machine pegged at 100%, I get this error: VMware Workstation unrecoverable error: (vcpu-0) NOT_REACHED F(562):1742 A log file is available in ... I have done a "minimal install" of CentOS 5 (all checkboxes in the category/task selection screen are unchecked -- so to X-Windows involved) and the virtual machine has 750MB of RAM. I'm using VMWare Workstation 4.5 and the host OS is Windo...
2007 Feb 19
0
22 commits - libswfdec/js libswfdec/swfdec_debugger.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_script.c
...(cx, y, vp); +} + +/* FIXME: what do we do if we're the root movie? */ +static JSBool mc_parent (JSContext *cx, JSObject *obj, jsval id, jsval *vp) { SwfdecMovie *movie; @@ -1040,10 +1069,10 @@ static JSPropertySpec movieclip_props[] {"_focusrect", -1, MC_PROP_ATTRS, not_reached, not_reached }, {"_soundbuftime", -1, MC_PROP_ATTRS, not_reached, not_reached }, {"_quality", -1, MC_PROP_ATTRS, not_reached, not_reached }, - {"_xmouse", -1, MC_PROP_ATTRS, not_reached, not_reached }, - {"_ymouse&quo...
2007 Jan 25
0
Branch 'interpreter' - 28 commits - configure.ac libswfdec/js libswfdec/swfdec_buffer.c libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_player.c
...t;gtk/gtk.h> #include "swfedit_file.h" +static void +cell_renderer_edited (GtkCellRenderer *renderer, char *path, + char *new_text, SwfeditFile *file) +{ + GtkTreeIter iter; + + if (!gtk_tree_model_get_iter_from_string (GTK_TREE_MODEL (file), + &iter, path)) { + g_assert_not_reached (); + } + swfedit_token_set (SWFEDIT_TOKEN (file), &iter, new_text); +} + static gboolean open_window (char *filename) { @@ -57,6 +70,7 @@ open_window (char *filename) renderer = gtk_cell_renderer_text_new (); g_object_set (G_OBJECT (renderer), "editable", TRUE, NULL); +...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...ommand[0] = JSOP_SETNAME; - compile_state_add_code (state, command, 3); - POP (state); -} -static void -compile_state_add_target (CompileState *state) -{ - guint8 command[3] = { JSOP_DEFVAR, 0, 0 }; - /* add the TARGET variable */ - if (atomize_string (state, TARGET_NAME) != 0) { - g_assert_not_reached (); - } - compile_state_add_code (state, command, 3); - THIS (state); - compile_state_set_target (state); -} - -static void -compile_state_init (JSContext *cx, SwfdecBits *bits, int version, CompileState *state) -{ - state->cx = cx; - state->bits = bits; - state->version = version;...