summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/server.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Move alerts onto events rather than checking every loop.nicm2015-08-291-2/+5
* Remove unused prototypes.nicm2015-08-281-3/+1
* Per-session timers for locking, and remove the global one-second timer.nicm2015-08-281-44/+3
* Remove the lock-server option which is a bit redundant, it isn't thatnicm2015-08-281-27/+2
* Give clock mode its own timer.nicm2015-08-281-10/+1
* Run status update on a per-client timer at status-interval.nicm2015-08-281-3/+1
* Move format job cleanup onto its own timer.nicm2015-08-281-3/+1
* Add an option (history-file) for a file to save/restore command promptnicm2015-07-201-1/+3
* Similarly, for sessions use a callback to free rather than checkingnicm2015-06-051-20/+1
* Instead of putting dead clients on a list and checking it every loop,nicm2015-06-051-12/+1
* Add support for a single "marked pane". There is one marked pane in thenicm2015-06-041-14/+80
* Clear signal handlers before event_reinit as apparently it can otherwisenicm2015-06-011-2/+2
* does not need syslog.hderaadt2015-05-311-2/+1
* Move the jobs output cache into the formats code so that #() work morenicm2015-05-271-1/+3
* Convert clients list into a TAILQ.nicm2015-04-241-46/+29
* Change the windows array into an RB tree and fix some places where wenicm2015-04-221-17/+6
* window_index is only used in one place (window_destroy) so inline it there.nicm2015-04-221-1/+2
* Do not die on USR1 if any of the socket parent directories arenicm2015-04-211-9/+15
* Add pane_dead_status for exit status of dead panes.nicm2014-12-091-1/+2
* Move cfg_causes local into cfg.c and remove struct causelist.nicm2014-10-271-14/+7
* Wake up any clients waiting with the wait-for command when the servernicm2014-09-011-2/+18
* lockf is entirely useless and it was a mistake to change to it, go backnicm2014-07-211-1/+2
* Now that cmdlists are reference counted, there is no need for two-stepnicm2014-05-141-2/+1
* There is no longer a need for a paste_stack struct or for global_buffersnicm2014-04-241-4/+1
* Some more long lines.nicm2014-04-171-2/+2
* Do not run any command line command from the client which starts thenicm2013-10-201-1/+4
* Rename global configuration define.nicm2013-04-241-5/+5
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-19/+25
* No more lint means no more ARGSUSED.nicm2013-03-221-4/+1
* Fix argument order in a log statement.nicm2012-12-061-2/+2
* Use a utility function for common code to show errors in config file,nicm2012-11-191-17/+6
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-6/+6
* Stop accepting new clients for 1 second on EMFILE/ENFILE. Based onnicm2012-04-111-7/+32
* Use a lock file and flock() to serialize server start, avoids problemsnicm2012-03-091-2/+6
* Give each pane created in a tmux server a unique id (starting from 0),nicm2011-03-271-1/+2
* Use LIST_* not SLIST_*.nicm2011-01-261-2/+2
* Move all calls to fcntl(...O_NONBLOCK) into a function and clear thenicm2011-01-081-7/+3
* Don't reset the activity timer for unattached sessions every second,nicm2011-01-011-11/+3
* Change from a per-session stack of buffers to one global stack which isnicm2010-12-301-1/+4