Add backtrace for kernel oops.

Sat Apr 16 01:54:18 2005  Søren Sandmann  <sandmann@redhat.com>

	* TODO: Add backtrace for kernel oops.
This commit is contained in:
Søren Sandmann
2005-04-16 05:58:40 +00:00
committed by Søren Sandmann Pedersen
parent a3b1e000e6
commit 06023f625e
3 changed files with 61 additions and 7 deletions

11
sfile.c
View File

@ -402,7 +402,9 @@ gpointer
sformat_new_pointer (const char *name,
SType *target_type)
{
return sformat_new_value (name, TYPE_POINTER);
Fragment *fragment = sformat_new_value (name, TYPE_POINTER);
/* FIXME: store the target type in the fragment */
return fragment;
}
gpointer
@ -1442,7 +1444,7 @@ disaster (int status)
case BZ_OUTBUFF_FULL:
error = "BZ_OUTBUFF_FULL";
break;
default:
error = "Unknown error";
break;
@ -1451,8 +1453,6 @@ disaster (int status)
g_error ("Failed to compress file: %s\n", error);
}
#include <bzlib.h>
static void
bz2_compress (const guchar *input, int input_length,
guchar **output, int *output_length)
@ -1565,9 +1565,6 @@ sfile_output_save (SFileOutput *sfile,
g_free (compressed);
/* FIXME, cut-and-paste the g_file_write() implementation
* as long as it isn't in glib
*/
retval = file_replace (filename, output->str, - 1, err);
g_string_free (output, TRUE);