summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/server.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Do not load the config file if the server is exiting because it failednicm2019-06-071-5/+7
* Replace the various identical error callbacks with a single one in cmd-queue.c.nicm2019-05-201-14/+3
* Break new window and pane creation common code from various commands andnicm2019-04-171-2/+2
* Move job struct into job.c.nicm2018-08-231-21/+6
* SESSION_UNATTACHED flag is no longer necessary now we have an attachednicm2018-08-181-2/+2
* session_groups can be static also.nicm2018-08-021-2/+1
* Add a missing client-detached hook when the server shuts down, and donicm2018-03-081-2/+11
* Add exit-empty option to exit server if no sessions (defaults to on).nicm2018-02-221-1/+4
* Report better error from server when socket create fails, GitHub issuenicm2017-12-191-15/+43
* Show exit status and time in the remain-on-exit pane text, mostly fromnicm2017-10-121-1/+2
* Because ignore SIGCHLD early, letting signal_del restore it doesn't worknicm2017-07-141-2/+2
* Block signals between forking and clearing signal handlers (or callingnicm2017-07-121-2/+6
* Move signal code into proc.c.nicm2017-07-121-4/+17
* Some extra logging to show why tmux might exit.nicm2017-07-091-2/+3
* Do not close panes until process has exited and any outstanding datanicm2017-07-031-2/+7
* Support SIGUSR2 to stop and start logging for an existing server. Alsonicm2017-06-041-2/+5
* Memory leaks, from David CARLIER.nicm2017-04-221-3/+7
* Make the cmd_find_* functions more obvious when looking for a client,nicm2017-04-211-3/+3
* History needs to be loaded after config parsing is done - now thatnicm2017-04-211-3/+1
* If a #() command doesn't exit, use its most recent line of output (itnicm2017-04-201-3/+10
* Instead of numbering session groups, give them a name which may be givennicm2017-02-091-2/+2
* Fixed keys for choose mode, and remove the last mode keys bits.nicm2017-01-241-2/+1
* Do not execute commands for a client until it has identified, fixesnicm2016-11-121-3/+5
* Notifys can go via the command queue instead of using their own queue.nicm2016-10-161-3/+1
* Rewrite command queue handling. Each client still has a command queue,nicm2016-10-161-2/+10
* Drain notifys once at the end of the server loop instead of doing itnicm2016-10-151-1/+2
* Loads more static, except for cmd-*.c and window-*.c.nicm2016-10-101-21/+20
* tmux: only consider ACCESSPERMS for setting mode on socket_path.semarie2016-07-071-2/+2
* Bump the listen() backlog up, some people have scripts that run up a lotnicm2016-03-301-2/+2
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Add infrastructure to work out the best target given a pane or windownicm2015-12-161-2/+2
* Make the marked pane a cmd_find_state.nicm2015-12-151-42/+16
* Do lock failures slightly better, return a special value so we don'tnicm2015-11-241-4/+6
* Remove the -I part of show-messages which isn't really that useful; thenicm2015-11-241-2/+2
* Make the log stuff a bit tidier with some helper functions.nicm2015-11-241-2/+2
* Add getpw to pledge, makes tmux work in YP environments, discovered bynicm2015-11-221-3/+3
* Use __unused rather than rolling our own.nicm2015-11-181-2/+2
* Accidentally turned off pledge, turn it back on.nicm2015-11-151-2/+2
* Push stdout and stderr to clients more aggressively, and add an event tonicm2015-11-141-2/+2
* Tidy utf8.c a little: build table on first use, and make utf8_width takenicm2015-11-121-2/+1
* The output log is only useful once and it means creating a file, so opennicm2015-10-311-1/+3
* Move struct options into options.c.nicm2015-10-271-2/+2
* Break the common process set up, event loop and imsg dispatch codenicm2015-10-271-54/+20
* tmux can call pledge() in main with large set and then reduce itnicm2015-10-231-1/+5
* This should not be changed.nicm2015-10-221-2/+2
* Rename shutdown to exit.nicm2015-10-221-12/+12
* Userspace doesn't need to use SUN_LEN(): connect() and bind() must acceptguenther2015-10-111-2/+2
* Move initial conf load into cfg.c.nicm2015-09-011-21/+4
* Event base does not need to be global.nicm2015-08-301-3/+3
* We already loop over the windows in server_client_loop, so don't do itnicm2015-08-291-5/+3