xref: /netbsd-src/external/bsd/tmux/dist/osdep-haiku.c (revision 9fb66d812c00ebfb445c0b47dea128f32aa6fe96)
1 /* $OpenBSD$ */
2 
3 /*
4  * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 #include <sys/types.h>
20 
21 #include <unistd.h>
22 #include <kernel/OS.h>
23 
24 #include "tmux.h"
25 
26 char *
osdep_get_name(int fd,__unused char * tty)27 osdep_get_name(int fd, __unused char *tty)
28 {
29 	pid_t		tid;
30 	team_info	tinfo;
31 
32 	if ((tid = tcgetpgrp(fd)) == -1)
33 		return (NULL);
34 
35 	if (get_team_info(tid, &tinfo) != B_OK)
36 		return (NULL);
37 
38 	/* Up to the first 64 characters. */
39 	return (xstrdup(tinfo.args));
40 }
41 
42 char *
osdep_get_cwd(int fd)43 osdep_get_cwd(int fd)
44 {
45 	return (NULL);
46 }
47 
48 struct event_base *
osdep_event_init(void)49 osdep_event_init(void)
50 {
51 	return (event_init());
52 }
53