Displaying 3 results from an estimated 3 matches for "default_handl".
Did you mean:
default_handle
2004 Dec 20
1
panic with search
...request to me.
thanks,
--
Kazuo Moriwaka
moriwaka at valinux.co.jp
-------------- next part --------------
(gdb) bt
#0 printf_string_upper_bound (format_p=0xbffff848, args=0xbffff884 "`????q\n\b?\f\b\210w\f\b??\017e\n\b\210w\f\b?\f\b")
at printf-upper-bound.c:78
#1 0x080a7640 in default_handler (prefix=0x80c226a "Panic: ", f=0x41149fe0,
format=0x80c3300 "pool_data_stack_realloc(): stack frame changed",
args=0xbffff884 "`????q\n\b?\f\b\210w\f\b??\017e\n\b\210w\f\b?\f\b") at failures.c:99
#2 0x080a76b8 in default_panic_handler (format=0x80c3300 &qu...
2011 Mar 25
1
imaptest assertion failure
...d: (ctx->clients_waiting > 0)
Error: Raw backtrace:
2 libdovecot.0.dylib 0x0000000102afadfd default_fatal_finish + 35 ->
3 libdovecot.0.dylib 0x0000000102af9b87 i_set_error_handler + 0 ->
4 libdovecot.0.dylib 0x0000000102afa986 default_handler + 0 ->
5 imaptest 0x0000000102ac2966 test_send_lstate_commands + 1016 ->
6 imaptest 0x0000000102ab7acd client_send_more_commands + 28 ->
7 imaptest 0x0000000102ab7f42 client_input + 394 ->
8 l...
2005 Aug 04
0
[PATCH 6/11] Xenstore watch rework
...e[10];
+ sprintf(handlename, "%u:", handle);
+ write(STDOUT_FILENO, handlename, strlen(handlename));
+ }
+ write(STDOUT_FILENO, command, strlen(command));
+ write(STDOUT_FILENO, " timeout\n", strlen(" timeout\n"));
+ exit(1);
+}
+
+static void do_command(unsigned int default_handle, char *line)
+{
+ char *endp;
+
+ if (strspn(line, " \n") == strlen(line))
+ return;
+ if (strstarts(line, "#"))
+ return;
+
+ handle = strtoul(line, &endp, 10);
+ if (endp != line)
+ memmove(line, endp+1, strlen(endp));
+ else
+ handle = default_handle;
+
+ if (!handle...