2008-11-16 14:28:59 +01:00
|
|
|
/* $Id: tmux.c,v 1.80 2008-11-16 13:28:59 nicm Exp $ */
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
#include <errno.h>
|
2007-10-20 11:57:08 +02:00
|
|
|
#include <pwd.h>
|
2007-07-09 21:04:12 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2008-06-18 21:34:50 +02:00
|
|
|
#ifndef NO_PATHS_H
|
|
|
|
#include <paths.h>
|
|
|
|
#endif
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2007-12-06 19:28:55 +01:00
|
|
|
#ifdef __OpenBSD__
|
2007-07-09 21:04:12 +02:00
|
|
|
const char *malloc_options = "AFGJPX";
|
|
|
|
#endif
|
2007-12-06 19:28:55 +01:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
const char *_malloc_options = "AJX";
|
|
|
|
#endif
|
|
|
|
#endif
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
volatile sig_atomic_t sigwinch;
|
|
|
|
volatile sig_atomic_t sigterm;
|
2008-06-03 23:42:37 +02:00
|
|
|
|
2008-06-02 20:08:17 +02:00
|
|
|
char *cfg_file;
|
2008-06-03 23:42:37 +02:00
|
|
|
struct options global_options;
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
int debug_level;
|
2008-06-16 19:35:40 +02:00
|
|
|
int be_quiet;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
void sighandler(int);
|
2008-06-02 23:08:36 +02:00
|
|
|
__dead void usage(void);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-06-18 22:11:25 +02:00
|
|
|
#ifdef NO_PROGNAME
|
|
|
|
const char *__progname = "tmux";
|
2008-06-19 00:21:51 +02:00
|
|
|
#endif
|
2008-06-18 22:11:25 +02:00
|
|
|
|
2008-06-02 23:08:36 +02:00
|
|
|
__dead void
|
|
|
|
usage(void)
|
2007-09-26 15:43:15 +02:00
|
|
|
{
|
2008-09-26 08:45:28 +02:00
|
|
|
fprintf(stderr, "usage: "
|
|
|
|
"%s [-2dquVv] [-f file] [-S socket-path] [command [flags]]\n",
|
2008-06-02 23:08:36 +02:00
|
|
|
__progname);
|
|
|
|
exit(1);
|
2007-09-26 15:43:15 +02:00
|
|
|
}
|
2007-08-27 15:45:26 +02:00
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
void
|
|
|
|
logfile(const char *name)
|
2007-07-09 21:04:12 +02:00
|
|
|
{
|
2007-09-26 15:43:15 +02:00
|
|
|
char *path;
|
|
|
|
|
|
|
|
log_close();
|
|
|
|
if (debug_level > 0) {
|
|
|
|
xasprintf(
|
|
|
|
&path, "%s-%s-%ld.log", __progname, name, (long) getpid());
|
2008-08-08 19:35:42 +02:00
|
|
|
log_open_file(debug_level, path);
|
2007-09-26 15:43:15 +02:00
|
|
|
xfree(path);
|
|
|
|
}
|
2007-07-09 21:04:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sighandler(int sig)
|
|
|
|
{
|
2007-10-24 13:21:29 +02:00
|
|
|
int saved_errno;
|
|
|
|
|
|
|
|
saved_errno = errno;
|
2007-07-09 21:04:12 +02:00
|
|
|
switch (sig) {
|
|
|
|
case SIGWINCH:
|
|
|
|
sigwinch = 1;
|
|
|
|
break;
|
|
|
|
case SIGTERM:
|
|
|
|
sigterm = 1;
|
|
|
|
break;
|
|
|
|
case SIGCHLD:
|
|
|
|
waitpid(WAIT_ANY, NULL, WNOHANG);
|
|
|
|
break;
|
|
|
|
}
|
2007-10-24 13:21:29 +02:00
|
|
|
errno = saved_errno;
|
2007-07-09 21:04:12 +02:00
|
|
|
}
|
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
void
|
|
|
|
siginit(void)
|
2007-07-09 21:04:12 +02:00
|
|
|
{
|
|
|
|
struct sigaction act;
|
|
|
|
|
2007-09-20 11:43:33 +02:00
|
|
|
memset(&act, 0, sizeof act);
|
2007-08-28 11:36:33 +02:00
|
|
|
sigemptyset(&act.sa_mask);
|
|
|
|
act.sa_flags = SA_RESTART;
|
|
|
|
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
if (sigaction(SIGPIPE, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
if (sigaction(SIGUSR1, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
if (sigaction(SIGUSR2, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
if (sigaction(SIGINT, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
if (sigaction(SIGTSTP, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
if (sigaction(SIGQUIT, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
|
|
|
|
act.sa_handler = sighandler;
|
|
|
|
if (sigaction(SIGWINCH, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
if (sigaction(SIGTERM, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-08-28 11:36:33 +02:00
|
|
|
if (sigaction(SIGCHLD, &act, NULL) != 0)
|
2007-09-26 15:43:15 +02:00
|
|
|
fatal("sigaction failed");
|
2007-07-09 21:04:12 +02:00
|
|
|
}
|
|
|
|
|
2007-08-27 15:45:26 +02:00
|
|
|
void
|
2007-09-26 15:43:15 +02:00
|
|
|
sigreset(void)
|
2007-08-27 15:45:26 +02:00
|
|
|
{
|
2007-09-26 15:43:15 +02:00
|
|
|
struct sigaction act;
|
2007-12-06 10:46:23 +01:00
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
memset(&act, 0, sizeof act);
|
|
|
|
sigemptyset(&act.sa_mask);
|
2007-12-06 10:46:23 +01:00
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
act.sa_handler = SIG_DFL;
|
|
|
|
if (sigaction(SIGPIPE, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGUSR1, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGUSR2, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGINT, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGTSTP, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGQUIT, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGWINCH, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGTERM, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
|
|
|
if (sigaction(SIGCHLD, &act, NULL) != 0)
|
|
|
|
fatal("sigaction failed");
|
2007-07-09 21:04:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2007-09-26 15:43:15 +02:00
|
|
|
main(int argc, char **argv)
|
2007-07-09 21:04:12 +02:00
|
|
|
{
|
2007-10-03 23:31:07 +02:00
|
|
|
struct client_ctx cctx;
|
|
|
|
struct msg_command_data data;
|
|
|
|
struct buffer *b;
|
|
|
|
struct cmd *cmd;
|
|
|
|
struct pollfd pfd;
|
|
|
|
struct hdr hdr;
|
2007-10-03 14:34:16 +02:00
|
|
|
const char *shell;
|
2007-10-20 11:57:08 +02:00
|
|
|
struct passwd *pw;
|
2008-06-23 18:58:49 +02:00
|
|
|
char *path, *cause, *home;
|
2007-11-16 22:12:31 +01:00
|
|
|
char rpath[MAXPATHLEN];
|
2008-09-10 00:16:37 +02:00
|
|
|
int n, opt, flags;
|
2007-08-27 15:45:26 +02:00
|
|
|
|
2008-09-10 00:16:37 +02:00
|
|
|
flags = 0;
|
2008-06-23 18:58:49 +02:00
|
|
|
path = NULL;
|
2008-09-26 01:28:15 +02:00
|
|
|
while ((opt = getopt(argc, argv, GETOPT_PREFIX "2df:qS:uVv")) != EOF) {
|
2007-09-26 15:43:15 +02:00
|
|
|
switch (opt) {
|
2008-09-25 22:08:57 +02:00
|
|
|
case '2':
|
|
|
|
flags |= IDENTIFY_256COLOURS;
|
|
|
|
break;
|
2008-06-02 20:08:17 +02:00
|
|
|
case 'f':
|
|
|
|
cfg_file = xstrdup(optarg);
|
2007-11-16 22:12:31 +01:00
|
|
|
break;
|
2007-09-26 21:38:42 +02:00
|
|
|
case 'S':
|
2007-09-26 15:43:15 +02:00
|
|
|
path = xstrdup(optarg);
|
2007-07-09 21:04:12 +02:00
|
|
|
break;
|
2008-06-16 19:35:40 +02:00
|
|
|
case 'q':
|
|
|
|
be_quiet = 1;
|
|
|
|
break;
|
2008-09-10 00:16:37 +02:00
|
|
|
case 'u':
|
|
|
|
flags |= IDENTIFY_UTF8;
|
|
|
|
break;
|
2008-09-25 22:08:57 +02:00
|
|
|
case 'd':
|
|
|
|
flags |= IDENTIFY_HASDEFAULTS;
|
|
|
|
break;
|
2007-09-26 15:43:15 +02:00
|
|
|
case 'v':
|
|
|
|
debug_level++;
|
2007-07-09 21:04:12 +02:00
|
|
|
break;
|
2007-11-09 12:03:35 +01:00
|
|
|
case 'V':
|
|
|
|
printf("%s " BUILD "\n", __progname);
|
|
|
|
exit(0);
|
2007-09-26 15:43:15 +02:00
|
|
|
default:
|
2008-06-02 23:08:36 +02:00
|
|
|
usage();
|
2007-09-26 15:43:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-08-08 19:35:42 +02:00
|
|
|
log_open_tty(debug_level);
|
2007-10-12 19:52:41 +02:00
|
|
|
siginit();
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-06-03 23:42:37 +02:00
|
|
|
options_init(&global_options, NULL);
|
2008-06-20 00:04:02 +02:00
|
|
|
options_set_number(&global_options, "status", 1);
|
2008-06-24 00:12:29 +02:00
|
|
|
options_set_number(&global_options, "status-fg", 0);
|
|
|
|
options_set_number(&global_options, "status-bg", 2);
|
2008-06-03 23:42:37 +02:00
|
|
|
options_set_number(&global_options, "bell-action", BELL_ANY);
|
|
|
|
options_set_number(&global_options, "history-limit", 2000);
|
2008-06-20 01:20:45 +02:00
|
|
|
options_set_number(&global_options, "display-time", 750);
|
2008-06-23 09:41:21 +02:00
|
|
|
options_set_number(&global_options, "prefix", META);
|
2008-06-19 21:40:35 +02:00
|
|
|
options_set_string(&global_options, "status-left", "%s", ""); /* ugh */
|
2008-06-04 07:40:35 +02:00
|
|
|
options_set_string(
|
|
|
|
&global_options, "status-right", "%%H:%%M %%d-%%b-%%y");
|
|
|
|
options_set_number(&global_options, "status-interval", 15);
|
2008-06-18 20:52:44 +02:00
|
|
|
options_set_number(&global_options, "set-titles", 1);
|
2008-06-20 20:45:35 +02:00
|
|
|
options_set_number(&global_options, "buffer-limit", 9);
|
2008-06-29 09:04:31 +02:00
|
|
|
options_set_number(&global_options, "remain-by-default", 0);
|
2008-07-02 23:22:57 +02:00
|
|
|
options_set_number(&global_options, "mode-keys", MODEKEY_EMACS);
|
2008-11-16 14:28:59 +01:00
|
|
|
options_set_number(&global_options, "utf8-default", 0);
|
2007-11-23 13:48:20 +01:00
|
|
|
|
2008-06-02 20:08:17 +02:00
|
|
|
if (cfg_file == NULL) {
|
|
|
|
home = getenv("HOME");
|
|
|
|
if (home == NULL || *home == '\0') {
|
|
|
|
pw = getpwuid(getuid());
|
|
|
|
if (pw != NULL)
|
|
|
|
home = pw->pw_dir;
|
|
|
|
endpwent();
|
|
|
|
}
|
|
|
|
xasprintf(&cfg_file, "%s/%s", home, DEFAULT_CFG);
|
|
|
|
if (access(cfg_file, R_OK) != 0) {
|
|
|
|
xfree(cfg_file);
|
|
|
|
cfg_file = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (access(cfg_file, R_OK) != 0) {
|
|
|
|
log_warn("%s", cfg_file);
|
|
|
|
exit(1);
|
2008-06-19 00:21:51 +02:00
|
|
|
}
|
2008-06-02 20:08:17 +02:00
|
|
|
}
|
|
|
|
|
2007-11-12 16:12:08 +01:00
|
|
|
if (path == NULL) {
|
|
|
|
xasprintf(&path,
|
|
|
|
"%s/%s-%lu", _PATH_TMP, __progname, (u_long) getuid());
|
|
|
|
}
|
|
|
|
if (realpath(path, rpath) == NULL) {
|
2007-11-20 13:59:27 +01:00
|
|
|
if (errno != ENOENT) {
|
|
|
|
log_warn("%s", path);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Linux appears to fill in the buffer fine but then returns
|
|
|
|
* ENOENT if the file doesn't exist. But since it returns an
|
|
|
|
* error, we can't rely on the buffer. Grr.
|
|
|
|
*/
|
|
|
|
if (strlcpy(rpath, path, sizeof rpath) >= sizeof rpath) {
|
|
|
|
log_warnx("%s: %s", path, strerror(ENAMETOOLONG));
|
|
|
|
exit(1);
|
|
|
|
}
|
2007-11-12 16:12:08 +01:00
|
|
|
}
|
|
|
|
xfree(path);
|
|
|
|
|
2007-10-03 14:34:16 +02:00
|
|
|
shell = getenv("SHELL");
|
2007-10-20 11:57:08 +02:00
|
|
|
if (shell == NULL || *shell == '\0') {
|
|
|
|
pw = getpwuid(getuid());
|
|
|
|
if (pw != NULL)
|
|
|
|
shell = pw->pw_shell;
|
|
|
|
endpwent();
|
|
|
|
if (shell == NULL || *shell == '\0')
|
|
|
|
shell = _PATH_BSHELL;
|
|
|
|
}
|
2008-06-03 23:42:37 +02:00
|
|
|
options_set_string(
|
|
|
|
&global_options, "default-command", "exec %s", shell);
|
2007-10-03 14:34:16 +02:00
|
|
|
|
2008-06-03 07:35:51 +02:00
|
|
|
if (argc == 0) {
|
|
|
|
cmd = xmalloc(sizeof *cmd);
|
2008-09-29 18:03:27 +02:00
|
|
|
cmd->entry = &cmd_new_session_entry;
|
2008-06-05 18:35:32 +02:00
|
|
|
cmd->entry->init(cmd, 0);
|
2008-06-03 07:35:51 +02:00
|
|
|
} else if ((cmd = cmd_parse(argc, argv, &cause)) == NULL) {
|
2007-10-04 00:32:24 +02:00
|
|
|
log_warnx("%s", cause);
|
2007-10-03 23:31:07 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-10-19 23:58:17 +02:00
|
|
|
memset(&cctx, 0, sizeof cctx);
|
2008-06-02 20:08:17 +02:00
|
|
|
client_fill_session(&data);
|
2008-09-10 00:16:37 +02:00
|
|
|
if (client_init(
|
|
|
|
rpath, &cctx, cmd->entry->flags & CMD_STARTSERVER, flags) != 0)
|
2007-10-03 23:31:07 +02:00
|
|
|
exit(1);
|
|
|
|
b = buffer_create(BUFSIZ);
|
|
|
|
cmd_send(cmd, b);
|
|
|
|
cmd_free(cmd);
|
|
|
|
|
|
|
|
client_write_server2(&cctx,
|
|
|
|
MSG_COMMAND, &data, sizeof data, BUFFER_OUT(b), BUFFER_USED(b));
|
|
|
|
buffer_destroy(b);
|
2007-10-24 13:42:03 +02:00
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
for (;;) {
|
|
|
|
pfd.fd = cctx.srv_fd;
|
|
|
|
pfd.events = POLLIN;
|
|
|
|
if (BUFFER_USED(cctx.srv_out) > 0)
|
|
|
|
pfd.events |= POLLOUT;
|
2007-12-06 10:46:23 +01:00
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
if (poll(&pfd, 1, INFTIM) == -1) {
|
|
|
|
if (errno == EAGAIN || errno == EINTR)
|
|
|
|
continue;
|
|
|
|
fatal("poll failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer_poll(&pfd, cctx.srv_in, cctx.srv_out) != 0)
|
|
|
|
fatalx("lost server");
|
|
|
|
|
|
|
|
restart:
|
|
|
|
if (BUFFER_USED(cctx.srv_in) < sizeof hdr)
|
|
|
|
continue;
|
|
|
|
memcpy(&hdr, BUFFER_OUT(cctx.srv_in), sizeof hdr);
|
|
|
|
if (BUFFER_USED(cctx.srv_in) < (sizeof hdr) + hdr.size)
|
|
|
|
continue;
|
|
|
|
buffer_remove(cctx.srv_in, sizeof hdr);
|
|
|
|
|
|
|
|
switch (hdr.type) {
|
|
|
|
case MSG_EXIT:
|
2007-10-04 13:52:03 +02:00
|
|
|
n = 0;
|
|
|
|
goto out;
|
2007-10-03 23:31:07 +02:00
|
|
|
case MSG_PRINT:
|
|
|
|
if (hdr.size > INT_MAX - 1)
|
|
|
|
fatalx("bad MSG_PRINT size");
|
2007-10-04 00:32:24 +02:00
|
|
|
log_info("%.*s",
|
|
|
|
(int) hdr.size, BUFFER_OUT(cctx.srv_in));
|
2007-10-03 23:31:07 +02:00
|
|
|
buffer_remove(cctx.srv_in, hdr.size);
|
|
|
|
goto restart;
|
|
|
|
case MSG_ERROR:
|
|
|
|
if (hdr.size > INT_MAX - 1)
|
|
|
|
fatalx("bad MSG_ERROR size");
|
2007-10-04 00:32:24 +02:00
|
|
|
log_warnx("%.*s",
|
2007-12-06 10:46:23 +01:00
|
|
|
(int) hdr.size, BUFFER_OUT(cctx.srv_in));
|
2007-10-03 23:31:07 +02:00
|
|
|
buffer_remove(cctx.srv_in, hdr.size);
|
2007-10-04 13:52:03 +02:00
|
|
|
n = 1;
|
|
|
|
goto out;
|
2007-10-03 23:31:07 +02:00
|
|
|
case MSG_READY:
|
2007-10-04 13:52:03 +02:00
|
|
|
n = client_main(&cctx);
|
|
|
|
goto out;
|
2007-10-03 23:31:07 +02:00
|
|
|
default:
|
|
|
|
fatalx("unexpected command");
|
2007-10-02 19:35:00 +02:00
|
|
|
}
|
2007-07-09 21:04:12 +02:00
|
|
|
}
|
2007-10-04 13:52:03 +02:00
|
|
|
|
|
|
|
out:
|
2008-06-03 23:42:37 +02:00
|
|
|
options_free(&global_options);
|
2007-10-24 13:42:03 +02:00
|
|
|
|
|
|
|
close(cctx.srv_fd);
|
|
|
|
buffer_destroy(cctx.srv_in);
|
|
|
|
buffer_destroy(cctx.srv_out);
|
|
|
|
|
2007-10-04 13:52:03 +02:00
|
|
|
#ifdef DEBUG
|
|
|
|
xmalloc_report(getpid(), "client");
|
|
|
|
#endif
|
|
|
|
return (n);
|
2007-07-09 21:04:12 +02:00
|
|
|
}
|