mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Do not rely on window reference count for linked formats because they
are also used for notifications, GitHub issue 4258.
This commit is contained in:
3
tmux.h
3
tmux.h
@ -3348,9 +3348,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 *);
|
||||
|
Reference in New Issue
Block a user