Sign-up....

我疯了~~ C里面怎么用内联?

最近在看linux内核源码,init进程的程序如下:

为了避免在内核空间使用堆栈(将导致NO COPY ON WRITE问题)

所以不能使用正常的函数调用,而使用inline函数

#define __LIBRARY__

#include <unistd.h>

#include <time.h>

/*

* we need this inline - forking from kernel space will result

* in NO COPY ON WRITE (!!!), until an execve is executed. This

* is no problem, but for the stack. This is handled by not letting

* main() use the stack at all after fork(). Thus, no function

* calls - which means inline code for fork too, as otherwise we

* would use the stack upon exit from 'fork()'.

*

* Actually only pause and fork are needed inline, so that there

* won't be any messing with the stack from main(), but we define

* some others too.

*/

static inline _syscall0(int,fork)

static inline _syscall0(int,pause)

static inline _syscall0(int,setup)

static inline _syscall0(int,sync)

#include <linux/tty.h>

#include <linux/sched.h>

#include <linux/head.h>

#include <asm/system.h>

#include <asm/io.h>

#include <stddef.h>

#include <stdarg.h>

#include <unistd.h>

#include <fcntl.h>

#include <sys/types.h>

#include <linux/fs.h>

static char printbuf[1024];

static char *testbuf="1234567890";

extern int vsprintf();

extern void init(void);

extern void hd_init(void);

extern long kernel_mktime(struct tm * tm);

extern long startup_time;

extern int chdir(const char *filename);

/*

* Yeah, yeah, it's ugly, but I cannot find how to do this correctly

* and this seems to work. I anybody has more info on the real-time

* clock I'd be interested. Most of this was trial and error, and some

* bios-listing reading. Urghh.

*/

#define CMOS_READ(addr) ({ outb_p(0x80|addr,0x70); inb_p(0x71); })

#define BCD_TO_BIN(val) ((val)=((val)&15) + ((val)>>4)*10)

static void time_init(void)

{

struct tm time;

do {

time.tm_sec = CMOS_READ(0);

time.tm_min = CMOS_READ(2);

time.tm_hour = CMOS_READ(4);

time.tm_mday = CMOS_READ(7);

time.tm_mon = CMOS_READ(8)-1;

time.tm_year = CMOS_READ(9);

} while (time.tm_sec != CMOS_READ(0));

BCD_TO_BIN(time.tm_sec);

BCD_TO_BIN(time.tm_min);

BCD_TO_BIN(time.tm_hour);

BCD_TO_BIN(time.tm_mday);

BCD_TO_BIN(time.tm_mon);

BCD_TO_BIN(time.tm_year);

startup_time = kernel_mktime(&time);

}

void main(void)/* This really IS void, no error here. */

{/* The startup routine assumes (well, ...) this */

/*

* Interrupts are still disabled. Do necessary setups, then

* enable them

*/

time_init();

tty_init();

trap_init();

sched_init();

buffer_init();

hd_init();

sti();

move_to_user_mode();

if (!fork()) {/* we count on this going ok */

init();

}

/*

* NOTE!! For any other task 'pause()' would mean we have to get a

* signal to awaken, but task0 is the sole exception (see 'schedule()')

* as task 0 gets activated at every idle moment (when no other tasks

* can run). For task0 'pause()' just means we go check if some other

* task can run, and if not we return here.

*/

for(;;) pause();

}

static int printf(const char *fmt, ...)

{

va_list args;

int i;

va_start(args, fmt);

write(1,printbuf,i=vsprintf(printbuf, fmt, args));

va_end(args);

return i;

}

static char * argv[] = { "-",NULL };

static char * envp[] = { "HOME=/usr/root", NULL };

void init(void)

{

int i,j;

setup();

MP(");

}

/*if (!fork())

_exit(execve("/bin/update",NULL,NULL));

(void) open("/dev/tty0",O_RDWR,0);

(void) dup(0);

(void) dup(0);

printf("%d buffers = %d bytes buffer space\n\r",NR_BUFFERS,

NR_BUFFERS*BLOCK_SIZE);

printf(" Ok.\n\r");

if ((i=fork())<0)

printf("Fork failed in init\r\n");

else if (!i) {

close(0);close(1);close(2);

setsid();

(void) open("/dev/tty0",O_RDWR,0);

(void) dup(0);

(void) dup(0);

_exit(execve("/bin/sh",argv,envp));

}

j=wait(&i);

printf("child %d died with code %04x\n",j,i);

sync();

_exit(0);/* NOTE! _exit, not exit() */

[3735 byte] By [msdn] at [2007-8-14 20:04:57]
# 1 Re: 我疯了~~ C里面怎么用内联?

楼主开玩笑,呵呵.c右内联吗?/?C++才由吧?

写成宏可以解决.

zjlang at 2005-5-8 22:26:09 >
# 2 Re: 我疯了~~ C里面怎么用内联?

楼主开玩笑,呵呵.c右内联吗?/?C++才由吧?

写成宏可以解决.

------

gcc是有内联的

heroboy2000 at 2005-5-8 23:50:36 >
# 3 Re: 我疯了~~ C里面怎么用内联?

c没有内联啊 内联函数在c++中才可用使用啊

使用宏可用代替一些简单的内联函数

dzw2004 at 2005-5-9 0:02:12 >
# 4 Re: 我疯了~~ C里面怎么用内联?

谢谢匪徒大哥教诲,linux编程我不熟悉.

呵呵受教.........

zjlang at 2005-5-9 22:29:31 >
# 5 Re: 我疯了~~ C里面怎么用内联?

用 gcc 来编译就行

icansaymyabc at 2005-5-10 8:43:24 >
# 6 Re: 我疯了~~ C里面怎么用内联?

宏替换,不检查语法

fire314159 at 2005-5-10 9:20:44 >
# 7 Re: 我疯了~~ C里面怎么用内联?

用GCC

xnlcx at 2005-5-10 9:22:31 >
# 8 Re: 我疯了~~ C里面怎么用内联?

GCC乱搞, 破坏标准。。。

healer_kx at 2005-5-10 9:28:37 >
# 9 Re: 我疯了~~ C里面怎么用内联?

gcc里面的c为了效率问题加进了内联函数

FrankZhang123 at 2005-5-10 9:29:35 >
# 10 Re: 我疯了~~ C里面怎么用内联?

不过如果gcc有。那倒无所谓,尽管用。反正好多人都用c++语法写过程化的程序,一点都用不上类。贪string 等东西好用而已。不过代码移植性不高倒是真的。

fire314159 at 2005-5-10 10:00:40 >

C/C++

All Classified