Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-09 | Update for swaywm/wlroots#1126 | emersion | |
2018-01-05 | common/log: finish removing most log functions | Dominique Martinet | |
Keep sway_abort and sway_assert and convert them to use wlr_log functions | |||
2017-11-18 | Move everything to sway/old/ | Drew DeVault | |
2017-10-20 | Print log level even if STDERR is not a tty | Calvin Lee | |
Makes reading debug logs much easier, debug lines will start with `E`, info lines with `I` and error lines with `E`. | |||
2017-06-06 | FreeBSD fixes | johalun | |
Increase _POSIX_SOURCE value where needed. Increase _XOPEN_SOURCE value where needed. Conditionally link to libcap (only on Linux). Possibly some trailing whitespace fixes (automatic). | |||
2017-04-20 | Make sway_abort() report location | Jerzi Kaminsky | |
2017-04-16 | Fix location reported by sway_assert | Jerzi Kaminsky | |
2017-04-16 | Fix variadic forwarding in sway_assert | Jerzi Kaminsky | |
_sway_assert is a variadic function which tries to delegate to another variadic function. This requires a vprintf-style variant of the delegate. https://stackoverflow.com/a/150616 | |||
2017-03-10 | UnGNUify the codebase | Drew DeVault | |
2016-12-15 | Handle malloc failure in ipc_recv_response | Drew DeVault | |
2016-09-01 | Reorganize includes | Drew DeVault | |
2016-07-28 | Add timestamp to log messages | Tony Crisci | |
2016-07-17 | Remove SIGSERV and SIGABORT handler | Drew DeVault | |
From now on let's just let the core dumps happen and ask users to provide them. | |||
2016-06-27 | Add get_log_level() to encapsulate v (current log level) | David Eklov | |
This patch also makes all global variable in log.c static. | |||
2016-05-02 | common: refactor sway_log() | Eric Engestrom | |
This removes most preprocessor logic, leaving it only it the header. | |||
2016-05-02 | common: fix double-close in error_handler() | Eric Engestrom | |
2016-05-02 | Fix off-by-one bug in log functions | Eric Engestrom | |
2016-02-26 | Correctly exit sway on errors. | Mikkel Oscar Lyderik | |
Calling `exit` in sway_terminate prevents sway from correctly shutting down (freeing data, cleanly terminating the ipc server, etc.). A better way is to exit straight away if the failure occurs before `wlc_run` and use sway_abort as usual if it occur when wlc is running. | |||
2016-02-08 | Fix clang warnings | Mikkel Oscar Lyderik | |
2016-01-28 | Print /proc/<pid>/maps on segfault | Drew DeVault | |
2015-12-21 | use CMake's FindBacktrace for backtrace feature detection | robotanarchy | |
2015-11-12 | Start fleshing out wayland client implementation | Drew DeVault | |
This introduces a basic shared framework for making wayland clients within sway itself. |