1999-12-21 00:49:11 +03:00
|
|
|
/* $NetBSD: globalcmds.c,v 1.5 1999/12/20 21:49:11 lukem Exp $ */
|
1999-12-16 07:40:03 +03:00
|
|
|
|
|
|
|
/*-
|
1999-12-20 22:31:47 +03:00
|
|
|
* Copyright (c) 1999
|
|
|
|
* The NetBSD Foundation, Inc. All rights reserved.
|
1999-12-16 07:40:03 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
1999-12-20 22:31:47 +03:00
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD Foundation.
|
|
|
|
* 4. Neither the name of the Foundation nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
1999-12-16 07:40:03 +03:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <curses.h>
|
|
|
|
#include <stdlib.h>
|
1999-12-21 00:49:11 +03:00
|
|
|
#include <string.h>
|
1999-12-16 07:40:03 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
#include "systat.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
|
|
|
|
|
|
|
void
|
1999-12-16 07:49:32 +03:00
|
|
|
global_help(args)
|
|
|
|
char *args;
|
1999-12-16 07:40:03 +03:00
|
|
|
{
|
|
|
|
int col, len;
|
|
|
|
struct mode *p;
|
|
|
|
|
|
|
|
move(CMDLINE, col = 0);
|
|
|
|
for (p = modes; p->c_name; p++) {
|
|
|
|
len = strlen(p->c_name);
|
|
|
|
if (col + len > COLS)
|
|
|
|
break;
|
|
|
|
addstr(p->c_name); col += len;
|
|
|
|
if (col + 1 < COLS)
|
|
|
|
addch(' ');
|
|
|
|
}
|
|
|
|
clrtoeol();
|
|
|
|
}
|
|
|
|
|
1999-12-16 09:16:16 +03:00
|
|
|
void
|
|
|
|
global_interval(args)
|
|
|
|
char *args;
|
|
|
|
{
|
|
|
|
int interval;
|
|
|
|
|
|
|
|
if (!args) {
|
|
|
|
interval = 5;
|
|
|
|
} else {
|
|
|
|
interval = atoi(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (interval <= 0) {
|
|
|
|
error("%d: bad interval.", interval);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
alarm(0);
|
|
|
|
naptime = interval;
|
|
|
|
display(0);
|
|
|
|
status();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-16 07:40:03 +03:00
|
|
|
void
|
1999-12-16 07:49:32 +03:00
|
|
|
global_load(args)
|
|
|
|
char *args;
|
1999-12-16 07:40:03 +03:00
|
|
|
{
|
|
|
|
(void)getloadavg(avenrun, sizeof(avenrun)/sizeof(avenrun[0]));
|
|
|
|
mvprintw(CMDLINE, 0, "%4.1f %4.1f %4.1f",
|
|
|
|
avenrun[0], avenrun[1], avenrun[2]);
|
|
|
|
clrtoeol();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-12-16 07:49:32 +03:00
|
|
|
global_quit(args)
|
|
|
|
char *args;
|
1999-12-16 07:40:03 +03:00
|
|
|
{
|
|
|
|
die(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-12-16 07:49:32 +03:00
|
|
|
global_stop(args)
|
|
|
|
char *args;
|
1999-12-16 07:40:03 +03:00
|
|
|
{
|
|
|
|
alarm(0);
|
|
|
|
mvaddstr(CMDLINE, 0, "Refresh disabled.");
|
|
|
|
clrtoeol();
|
|
|
|
}
|