Unix/Linux编程实践教程_学习记录_第2章_3_缓冲

1、提供文件I/O效率的方法:缓冲。

2、缓冲区的大小对性能有很大的影响。

3、运行内核代码时,CPU工作在管理员模式。

         用户程序运行时,CPU工作在用户模式。

        系统调用时,CPU由用户模式切换为管理员模式。

        系统调用结束后,CPU由管理员模式切换到用户模式。

4、CPU运行模式的切换,伴随着运行环境(堆栈、内存环境)的切换。而运行环境的切换是需要时间的。

        对系统来说,这种时间上的开销是昂贵的。

        所以,要尽可能的减少模式间的切换。

5、带缓冲的who

(1)utmplib.c

#include<stdio.h>
#include<fcntl.h>
#include<sys/types.h>
#include<utmp.h>

#define NRECS 16
#define NULLUT ((struct utmp *)NULL)
#define UTSIZE (sizeof(struct utmp))

static char utmpbuf[NRECS * UTSIZE];
static int num_recs;
static int cur_rec;
static int fd_utmp = -1;

utmp_open(char* filename) {
    fd_utmp = open(filename, O_RDONLY);
    cur_rec = num_recs = 0;
    return fd_utmp;
}

struct utmp* utmp_next() {
    struct utmp* recp;
    if (fd_utmp == -1) {
        return NULLUT;
    }
    if (cur_rec == num_recs && utmp_reload() == 0) {
        return NULLUT;
    }
    recp = (struct utmp*)&utmpbuf[cur_rec * UTSIZE];
    cur_rec++;
    return recp;
}

int utmp_reload() {
    int amt_read;
    amt_read = read(fd_utmp, utmpbuf, NRECS * UTSIZE);
    num_recs = amt_read / UTSIZE;
    cur_rec = 0;
    return num_recs;
}

utmp_close() {
    if (fd_utmp != -1) {
        close(fd_utmp);
    }
}

(2)、main.c

#include<stdio.h>
#include<sys/types.h>
#include<utmp.h>
#include<fcntl.h>
#include<time.h>

#define SHOWHOST

void show_info(struct utmp*);
void showtime(time_t);

int main() {
    struct utmp* utbufp, *utmp_next();
    if (utmp_open(UTMP_FILE) == -1) {
        perror(UTMP_FILE);
        exit(1);
    }
    while ((utbufp = utmp_next()) != ((struct utmp*)NULL)) {
        show_info(utbufp);
    }
    utmp_close();
    return 0;
}

/*
 *show_info()
 *showtime()
 */

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值