Sync OpenBSD patchset 854:

Use LIST_* not SLIST_*.
This commit is contained in:
Tiago Cunha
2011-02-15 15:12:28 +00:00
parent 2ab568fa88
commit 3b56ebce6d
5 changed files with 19 additions and 19 deletions

10
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.608 2011-02-15 15:10:47 tcunha Exp $ */
/* $Id: tmux.h,v 1.609 2011-02-15 15:12:28 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -680,10 +680,10 @@ struct job {
#define JOB_PERSIST 0x1 /* don't free after callback */
RB_ENTRY(job) entry;
SLIST_ENTRY(job) lentry;
LIST_ENTRY(job) lentry;
};
RB_HEAD(jobs, job);
SLIST_HEAD(joblist, job);
LIST_HEAD(joblist, job);
/* Screen selection. */
struct screen_sel {
@ -986,9 +986,9 @@ struct tty_term {
#define TERM_EARLYWRAP 0x4
int flags;
SLIST_ENTRY(tty_term) entry;
LIST_ENTRY(tty_term) entry;
};
SLIST_HEAD(tty_terms, tty_term);
LIST_HEAD(tty_terms, tty_term);
struct tty {
char *path;