Displaying 2 results from an estimated 2 matches for "command_len".
2015 Feb 23
1
[PATCH] RFE: journal reader in guestfish
This implements new guestfish only command called journal-view.
There seems to be a minor issue when user wants to run it through pager (more)
and wants cancel it. User will end up with stuck guestfish until journal-view
transfers all journal items.
Output is not yet configurable, it's the same format as virt-log has.
Maros Zatko (1):
fish: add journal-view command
fish/Makefile.am
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
...e, char *format, ...)
-{
- va_list args;
-
- g_assert (state->error == NULL);
-
- va_start (args, format);
- state->error = g_strdup_vprintf (format, args);
- va_end (args);
-}
-
-/*** ACTION COMPILATION FUNCTIONS ***/
-
-static void
-compile_state_push_offset (CompileState *state, guint command_len)
-{
- Offset offset = { command_len, state->bytecode->len };
- if (state->offsets->len > 0)
- offset.original += g_array_index (state->offsets, Offset, state->offsets->len - 1).original;
- g_array_append_val (state->offsets, offset);
-}
-
-static jsatomid
-atomize_s...