Age | Commit message (Expand) | Author |
2012-07-10 | xfree is not particularly helpful, remove it. From Thomas Adam. | Nicholas Marriott |
2012-06-18 | Actually write all the data to stdout/stderr. | Nicholas Marriott |
2012-06-18 | Add a skeleton mode to tmux (called "control mode") that let's tmux | Nicholas Marriott |
2012-05-25 | Simplify logging and just fprintf(stderr, ...) for early errors. | Nicholas Marriott |
2012-05-21 | Instead of passing stdin/stdout/stderr file descriptors over imsg and | Nicholas Marriott |
2012-04-23 | Add missing prototype. | Nicholas Marriott |
2012-04-23 | Use an enum for client exit reasons, from George Nachman. | Nicholas Marriott |
2012-03-24 | Add sys/file.h. | Nicholas Marriott |
2012-03-19 | Move MSG_IDENTIFY to the last sent by the client, this will be needed by | Nicholas Marriott |
2012-03-09 | Use a lock file and flock() to serialize server start, avoids problems | Nicholas Marriott |
2011-03-03 | Add a -P option to detach to HUP the client's parent process (usually | Nicholas Marriott |
2011-01-08 | Move all calls to fcntl(...O_NONBLOCK) into a function and clear the | Nicholas Marriott |
2010-10-18 | Merge the before and after attach client code into one in client.c | Nicholas Marriott |
2010-10-16 | Trying to set FD_CLOEXEC on every fd is a lost cause, just use | Nicholas Marriott |
2010-08-23 | Can't call event_del() without event_set() first - so call event_set() | Nicholas Marriott |
2010-08-22 | MSG_EXIT can now have a return code in the message, so check for that | Nicholas Marriott |
2010-06-28 | Send all three of stdin, stdout, stderr from the client to the server, so that | Nicholas Marriott |
2010-06-05 | Fix problems with window sizing seen by Raghavendra D Prabhu when | Nicholas Marriott |
2010-06-05 | This ioctl(TIOCGWINSZ) call is no longer necessary, the result is never | Nicholas Marriott |
2010-05-12 | Catch SIGHUP and terminate if running as a client. This prevents clients | Joel Sing |
2010-05-04 | Put this back in with the initialisation in the right order. | Nicholas Marriott |
2010-05-04 | Revert last change, it appears to be broken somehow. | Nicholas Marriott |
2010-05-03 | Make signal handler setup/teardown two common functions instead of six, | Nicholas Marriott |
2009-12-03 | Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last | Nicholas Marriott |
2009-11-26 | Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to | Nicholas Marriott |
2009-11-13 | imsg_read returns ssize_t not int, pointed out by lint via deraadt. | Nicholas Marriott |
2009-11-10 | Don't return 1 unless there was actually a problem (signal/lost server) rather | Nicholas Marriott |
2009-11-04 | Move some common code into a function. | Nicholas Marriott |
2009-11-04 | Initial changes to move tmux to libevent. | Nicholas Marriott |
2009-11-02 | Leftover unused variable :-/. | Nicholas Marriott |
2009-11-02 | There isn't much point in doing lstat before connect so instead just do connect | Nicholas Marriott |
2009-10-26 | Clear signal flags /before/ taking action and continue afterwards to reduce | Nicholas Marriott |
2009-10-21 | Tidy identify message send into a separate function. | Nicholas Marriott |
2009-10-21 | Client tidying: get rid of client_ctx struct in favour of two variables in | Nicholas Marriott |
2009-10-13 | Do this in a better way - print messages when exiting with nonzero. | Nicholas Marriott |
2009-10-13 | Don't print exit messages when used as a login shell, requested by martynas@ a | Nicholas Marriott |
2009-09-23 | Support -c like sh(1) to execute a command, useful when tmux is a login | Nicholas Marriott |
2009-09-23 | Remove the internal tmux locking and instead detach each client and run the | Nicholas Marriott |
2009-09-23 | Trim some code by moving the ioctl(TIOCGWINSZ) after SIGWINCH from the client | Nicholas Marriott |
2009-09-23 | Don't attempt to open() the tty path, rely on the client sending its stdin fd | Nicholas Marriott |
2009-09-20 | Regularise some fatal messages. | Nicholas Marriott |
2009-09-02 | Fix a race condition when asking a client to take over the terminal (switching | Nicholas Marriott |
2009-09-02 | That was the wrong fix. MSG_ERROR should set the error and the client should | Nicholas Marriott |
2009-09-02 | Set exittype for error exit as well as the error string. | Nicholas Marriott |
2009-08-12 | imsg closes the fd after sending, so dup() STDIN_FILENO before passing it to | Nicholas Marriott |
2009-08-11 | Have the client pass its stdin fd to the server when identifying itself and | Nicholas Marriott |
2009-08-11 | Switch tmux to use imsg. This is the last major change to make the | Nicholas Marriott |
2009-08-08 | Infrastructure and commands to manage the environment for processes started | Nicholas Marriott |
2009-08-08 | Tidy function a little by using a temporary variable. | Nicholas Marriott |
2009-07-30 | There aren't many client message types or code to handle them so get rid of the | Nicholas Marriott |