aboutsummaryrefslogtreecommitdiff
path: root/buffer-poll.c
Commit message (Collapse)AuthorAge
* Sync OpenBSD patchset 499:Tiago Cunha2009-11-08
| | | | | Bye-bye buffer*.c.
* Sync OpenBSD patchset 491:Tiago Cunha2009-11-08
| | | | | | | | | | | | Initial changes to move tmux to libevent. This moves the client-side loops are pretty much fully over to event-based only (tmux.c and client.c) but server-side (server.c and friends) treats libevent as a sort of clever poll, waking up after every event to run various things. Moving the server stuff over to bufferevents and timers and so on will come later.
* Sync OpenBSD patchset 438:Tiago Cunha2009-10-23
| | | | | | | | | | | Split the server code handling clients, jobs and windows off into separate files from server.c (merging server-msg.c into the client file) and rather than iterating over each set after poll(), allow a callback to be specified when the fd is added and just walk once over the returned pollfds calling each callback where needed. More to come, getting this in so it is tested.
* Sync OpenBSD patchset 374:Tiago Cunha2009-10-11
| | | | | | | | | | | | | | | | | | | Rather than running status-left, status-right and window title #() with popen immediately every redraw, queue them up and run them in the background, starting each once every status-interval. The actual status line uses the output from the last run. This brings several advantages: - tmux itself may be called from inside #() without causing the server to hang; - likewise, sleep or similar doesn't cause the server to block; - commands aren't run excessively often when redrawing; - commands shared by status-left and status-right, or used multiple times, will only be run once. run-shell and if-shell still use system()/popen() but will be changed over to use this too later.
* Make this match OpenBSD.Nicholas Marriott2009-08-19
|
* This is a better fix for OS X stupidity.Nicholas Marriott2009-08-19
|
* Sync this properly.Nicholas Marriott2009-06-25
|
* Restore $Id$ and add script to do so.Nicholas Marriott2009-06-25
|
* Nuke unused buffer functions. Found by lint.Nicholas Marriott2009-06-25
| | | | | Also remove some old debug output which was #if 0.
* Rename all feature flags to HAVE_* and move out of makefiles into a configureNicholas Marriott2009-05-13
| | | | | | | | | script which must be run before building. Still two makefiles but they are a hell of a lot simpler. HAVE_* also will make it easier to move to $buildsystem if necessary later.
* Initial UTF-8 support.Nicholas Marriott2008-09-09
|
* Support OS X by moving to gettimeofday(2) and adding poll compat from OpenSSH.Nicholas Marriott2008-08-28
|
* long for pid.Nicholas Marriott2008-07-01
|
* Trimify.Nicholas Marriott2008-06-18
|
* More Sun OS crap.Nicholas Marriott2008-06-18
|
* Don't hang when window closes early; also add lots more debugging.Nicholas Marriott2008-05-31
|
* Change window name on \ek...\e\.Nicholas Marriott2007-11-30
|
* Big internal reorganisation to move tty control into parent.Nicholas Marriott2007-11-27
|
* Try write even if read gets signal, some other tweaks.Nicholas Marriott2007-11-07
|
* Initial import to CVS. Basic functions are working, albeit with a couple of ↵Nicholas Marriott2007-07-09
showstopper memory bugs and many missing features. Detaching, reattaching, creating new sessions, listing sessions work acceptably for using with shells. Simple curses programs (top, systat, tetris) and more complicated ones (mutt, emacs) that don't require scrolling regions (ESC[r) mostly work fine (including mutt, emacs). No status bar yet and no key remapping or other customisation.