Displaying 3 results from an estimated 3 matches for "do_main".
Did you mean:
db_main
2010 Apr 15
1
[PATCH matahari] Refactored the Host agent.
...+void
+shutdown(int /*signal*/)
{
- HostWrapper::disposeHostWrapper();
- delete singleton;
-}
-
-void shutdown(int)
-{
- cleanup();
- exit(0);
+ exit(0);
}
static void
@@ -69,21 +62,22 @@ print_usage()
printf("\t-p | --port specify broker port.\n");
}
-int do_main(int argc, char **argv)
+int
+main(int argc, char **argv)
{
int arg;
int idx = 0;
bool daemonize = false;
bool gssapi = false;
bool verbose = false;
- char *host = NULL;
+ char *servername = NULL;
char *username = NULL;
char *service = NULL;
- int port =...
2014 Feb 25
0
[Bug 75279] XCloseDisplay() takes one minute around nouveau_dri.so, freezing Firefox startup
...o
#14 0x00007f1e09932886 in XREMain::XRE_main(int, char**, nsXREAppData const*)
() from /home/sstangl/bin/nightly/libxul.so
---Type <return> to continue, or q <return> to quit---
#15 0x00007f1e09932b94 in XRE_main () from /home/sstangl/bin/nightly/libxul.so
#16 0x0000000000406b66 in do_main(int, char**, nsIFile*) ()
#17 0x000000000040383b in main ()
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20140225/c4dc9a23/att...
2010 Mar 15
0
[PATCH] Updated the list of ignored files and fixed whitespace issues.
...100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,4 +1,4 @@
-/* Copyright (C) 2009 Red Hat, Inc.
+/* main.cpp - Copyright (C) 2009 Red Hat, Inc.
* Written by Arjun Roy <arroy at redhat.com>
*
* This program is free software; you can redistribute it and/or modify
@@ -190,7 +190,7 @@ int do_main(int argc, char **argv)
}
catch (...) {
cleanup();
- throw;
+ throw;
}
// Main loop
@@ -205,7 +205,7 @@ int main(int argc, char** argv)
{
try {
return do_main(argc, argv);
- }
+ }
catch(std::exception& e) {
cout &l...