[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.h between version 1.513 and 1.514

version 1.513, 2015/05/12 15:27:46 version 1.514, 2015/05/12 22:40:38
Line 56 
Line 56 
  */   */
 #define UTF8_SIZE 9  #define UTF8_SIZE 9
   
   /*
    * READ_SIZE is the maximum size of data to hold from a pty (the event high
    * watermark). READ_BACKOFF is the amount of data waiting to be output to a tty
    * before pty reads will be backed off. READ_TIME is how long to back off
    * before the next read (in microseconds) if a tty is above READ_BACKOFF.
    */
   #define READ_SIZE 1024
   #define READ_BACKOFF 512
   #define READ_TIME 100
   
 /* Fatal errors. */  /* Fatal errors. */
 #define fatal(msg) log_fatal("%s: %s", __func__, msg);  #define fatal(msg) log_fatal("%s: %s", __func__, msg);
 #define fatalx(msg) log_fatalx("%s: %s", __func__, msg);  #define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
Line 847 
Line 857 
   
         int              fd;          int              fd;
         struct bufferevent *event;          struct bufferevent *event;
           struct event     timer;
   
         struct input_ctx *ictx;          struct input_ctx *ictx;
   
Line 1595 
Line 1606 
 int     tty_open(struct tty *, char **);  int     tty_open(struct tty *, char **);
 void    tty_close(struct tty *);  void    tty_close(struct tty *);
 void    tty_free(struct tty *);  void    tty_free(struct tty *);
 void    tty_write(  void    tty_write(void (*)(struct tty *, const struct tty_ctx *),
             void (*)(struct tty *, const struct tty_ctx *), struct tty_ctx *);              struct tty_ctx *);
   int     tty_client_ready(struct client *, struct window_pane *wp);
 void    tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);  void    tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
 void    tty_cmd_cell(struct tty *, const struct tty_ctx *);  void    tty_cmd_cell(struct tty *, const struct tty_ctx *);
 void    tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);  void    tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);

Legend:
Removed from v.1.513  
changed lines
  Added in v.1.514