mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 00:50:09 +01:00
* dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to return a "babysitter" object that is used to monitor the status of the spawned process and reap it when required. * test/test-segfault.c, test/test-exit.c, test/test-sleep-forever.c: binaries that do various lame things, used in the test suite. * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
8 lines
111 B
C
8 lines
111 B
C
/* This is a process that just exits with a failure code */
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
|
|
return 1;
|
|
}
|