Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2024-11-25 10:01:11 +00:00
4 changed files with 40 additions and 10 deletions

3
tmux.h
View File

@ -3397,9 +3397,12 @@ void control_notify_paste_buffer_deleted(const char *);
/* session.c */
extern struct sessions sessions;
extern struct session_groups session_groups;
extern u_int next_session_id;
int session_cmp(struct session *, struct session *);
RB_PROTOTYPE(sessions, session, entry, session_cmp);
int session_group_cmp(struct session_group *, struct session_group *s2);
RB_PROTOTYPE(session_groups, session_group, entry, session_group_cmp);
int session_alive(struct session *);
struct session *session_find(const char *);
struct session *session_find_by_id_str(const char *);