Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | move lib/MiddleWare/{ABRTPlugin,DynamicLibrary}.* to src/Daemon/ | Denys Vlasenko | 2009-08-06 | 5 | -0/+322 | |
| | | ||||||
* | | Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt | Jiri Moskovcak | 2009-08-06 | 10 | -19/+1443 | |
|\| | | | | | | | | | Conflicts: lib/CommLayer/DBusServerProxy.h | |||||
| * | fix a case when we print a warning twice. | Denys Vlasenko | 2009-08-06 | 2 | -0/+2 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | dynamic_cast<> seems to be misbehaving. Disabling it for now. | Denys Vlasenko | 2009-08-06 | 1 | -4/+4 | |
| | | | | | | | | | | | | abrt daemon is SEGVing without this Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | move lib/MiddleWare/PluginManager.* -> src/Daemon/PluginManager.* | Denys Vlasenko | 2009-08-06 | 3 | -0/+444 | |
| | | | | | | | | | | | | This reduces code size by 14k. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | style cleanups in preparation for PluginManager move | Denys Vlasenko | 2009-08-06 | 1 | -13/+14 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | forgotten "git add" | Denys Vlasenko | 2009-08-06 | 2 | -0/+964 | |
| | | ||||||
| * | moving MiddleWare.{h,cpp} from lib/MiddleWare/ to src/Daemon/ | Denys Vlasenko | 2009-08-06 | 1 | -0/+1 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | prepare makefiles for code movement between dirs. no code changes | Denys Vlasenko | 2009-08-06 | 1 | -0/+1 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | trailing whitespace removal. no code changes | Denys Vlasenko | 2009-08-06 | 5 | -19/+30 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | | DBUS: added method GetPluginsInfo() | Jiri Moskovcak | 2009-08-06 | 2 | -0/+17 | |
|/ | ||||||
* | made some functions static | Denys Vlasenko | 2009-08-04 | 2 | -7/+10 | |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | add error checks on lstat calls; add handling of DT_UNKNOWN | Denys Vlasenko | 2009-08-04 | 1 | -14/+20 | |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | abrt-applet: set SIGCHLD to SIG_IGN to prevent zombies from gui | Denys Vlasenko | 2009-08-04 | 1 | -0/+1 | |
| | | | | | | | Also, running abrt-gui via popen is definiely wrong. We were leaking a FILE! fixed now. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | simplify parameter/return value passing for bools | Denys Vlasenko | 2009-08-03 | 2 | -2/+2 | |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | DBus: Many fixes to client -> cli works again, changed JobDone notification | Jiri Moskovcak | 2009-08-03 | 2 | -24/+47 | |
| | ||||||
* | KerneloopsReporter: plug a leak in writefunction | Denys Vlasenko | 2009-07-31 | 1 | -1/+1 | |
| | | | | | | Also some preparatory cleanups for future dumpoops patch are included Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | using more x-functions | Denys Vlasenko | 2009-07-31 | 1 | -22/+14 | |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | style fixes, no code changes | Denys Vlasenko | 2009-07-31 | 1 | -40/+36 | |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | added forgotten "throw" keywords | Denys Vlasenko | 2009-07-22 | 1 | -1/+1 | |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
* | Daemon: threading fixes | Jiri Moskovcak | 2009-07-22 | 2 | -16/+32 | |
| | ||||||
* | Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt | Jiri Moskovcak | 2009-07-20 | 4 | -62/+158 | |
|\ | ||||||
| * | On exit, take care to emit consistent exit status. | Denys Vlasenko | 2009-07-17 | 1 | -5/+13 | |
| | | | | | | | | | | | | If we were Ctrl-C'ed, then we should exit by killing ourself, not exit(N). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | rework unsafe handling of SIGINT/SIGTERM | Denys Vlasenko | 2009-07-17 | 3 | -12/+69 | |
| | | | | | | | | | | | | | | | | | | | | Signals are asynchronous. It is unsafe to perform such complex operations in a signal handler. I changed signal handler to just set a flag, and added an event source which returns an event when this variable is set. The action is to stop event loop. Execution then falls through to program exit. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | prevent leaking buf in some cases | Denys Vlasenko | 2009-07-17 | 1 | -4/+12 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | simplify CCrashWatcher::CreatePidFile | Denys Vlasenko | 2009-07-17 | 1 | -23/+19 | |
| | | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | Restore /proc/sys/kernel/core_pattern on error exit. | Denys Vlasenko | 2009-07-15 | 2 | -30/+57 | |
| | | | | | | | | | | | | The bug was observed when dbus-abrt.conf is missing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||||
| * | test commit | root | 2009-07-15 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: root <root@dhcp-lab-117.englab.brq.redhat.com> | |||||
* | | Daemon: added threaded CreateReport -> breaks CLI! | Jiri Moskovcak | 2009-07-20 | 2 | -41/+86 | |
|/ | ||||||
* | Removed unused file | Jiri Moskovcak | 2009-07-07 | 2 | -191/+1 | |
| | ||||||
* | documentation after English language review from rlandman@redhat.com | Daniel Novotny | 2009-07-03 | 2 | -31/+34 | |
| | ||||||
* | added a creation of directory for local building | Zdenek Prikryl | 2009-06-30 | 1 | -0/+3 | |
| | ||||||
* | fixed getting list of errors for root | Zdenek Prikryl | 2009-06-29 | 1 | -10/+10 | |
| | ||||||
* | updated manpage0.0.4 | Daniel Novotny | 2009-06-24 | 1 | -0/+6 | |
| | ||||||
* | proper way how to daemonize | Zdenek Prikryl | 2009-06-24 | 3 | -38/+21 | |
| | ||||||
* | fixed exception chatching | Zdenek Prikryl | 2009-06-24 | 1 | -2/+2 | |
| | ||||||
* | Minor fix to save pid of child process after fork. | Jiri Moskovcak | 2009-06-23 | 1 | -1/+2 | |
| | ||||||
* | Added pidfile support in daemon (C hook should work now) | Jiri Moskovcak | 2009-06-23 | 2 | -3/+37 | |
| | ||||||
* | new default path for lock file | Zdenek Prikryl | 2009-06-17 | 2 | -4/+6 | |
| | ||||||
* | Lock file directory honor the --prefix | Jiri Moskovcak | 2009-06-17 | 2 | -1/+2 | |
| | ||||||
* | Added lock file support to daemon | Jiri Moskovcak | 2009-06-17 | 1 | -3/+3 | |
| | ||||||
* | new manual pages | Daniel Novotny | 2009-06-16 | 2 | -5/+12 | |
| | ||||||
* | Fixed spec file, to work with new version | Jiri Moskovcak | 2009-06-15 | 2 | -2/+2 | |
| | ||||||
* | added new options to AT, which defines what communication platform will be used | Zdenek Prikryl | 2009-06-11 | 3 | -8/+9 | |
| | ||||||
* | abrt can take reporter's configuration file from reporting users's ↵ | Zdenek Prikryl | 2009-06-10 | 2 | -3/+22 | |
| | | | | $HOME/.abrt/ directory | |||||
* | fixed updating gui | Zdenek Prikryl | 2009-06-03 | 1 | -2/+9 | |
| | ||||||
* | added man pages | Zdenek Prikryl | 2009-06-03 | 1 | -0/+2 | |
| | ||||||
* | new man pages | Zdenek Prikryl | 2009-06-03 | 2 | -0/+107 | |
| | ||||||
* | Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt | Jiri Moskovcak | 2009-05-28 | 1 | -26/+117 | |
|\ | ||||||
| * | added return codes to some of MW's functions | Zdenek Prikryl | 2009-05-28 | 1 | -26/+117 | |
| | |