35e49f2582
waiting for teams to crash to show our favorite alert. Due to the missing app_server we don't show a alert yet. We just print something to /dev/dprintf and kill the team. Unlike R5's debug server ours will probably not provide any debugging functionality itself, but rather employ gdb directly. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11492 a95241bf-73f2-0310-859d-f6bbb57e9c96
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
/*
|
|
* DebugServer.rdef
|
|
*
|
|
*/
|
|
|
|
/* BEOS:APP_SIG :
|
|
application:/x-vnd.obos.app-name
|
|
*/
|
|
|
|
resource app_signature "application/x-vnd.haiku-debug-server";
|
|
|
|
/* BEOS:APP_FLAGS :
|
|
00000000 = SINGLE LAUNCH
|
|
00000001 = MULTIPLE LAUNCH
|
|
00000002 = EXCLUSIVE LAUNCH
|
|
00000004 = BACKGROUND APP + SINGLE LAUNCH
|
|
00000005 = BACKGROUND APP + MULTIPLE LAUNCH
|
|
00000006 = BACKGROUND APP + EXCLUSIVE LAUNCH
|
|
00000008 = ARGV_ONLY + SINGLE LAUNCH
|
|
00000009 = ARGV_ONLY + MULTIPLE LAUNCH
|
|
0000000A = ARGV_ONLY + EXCLUSIVE LAUNCH
|
|
0000000C = ARGV_ONLY + BACKGROUND APP + SINGLE LAUNCH
|
|
0000000D = ARGV_ONLY + BACKGROUND APP + MULTIPLE LAUNCH
|
|
0000000E = ARGV_ONLY + BACKGROUND APP + EXCLUSIVE LAUNCH
|
|
*/
|
|
|
|
resource app_flags B_SINGLE_LAUNCH | B_BACKGROUND_APP;
|
|
|
|
resource app_version {
|
|
|
|
major = 1,
|
|
middle = 0,
|
|
minor = 0,
|
|
|
|
/* 0 = development 1 = alpha 2 = beta
|
|
3 = gamma 4 = golden master 5 = final */
|
|
variety = 1,
|
|
|
|
internal = 0,
|
|
|
|
short_info = "debug_server",
|
|
long_info = "Haiku - debug_server"
|
|
};
|
|
|
|
/* TODO: Icons */
|