我需要使用 reboot() 系统调用(用 ARM 重新启动内核 2.6.29),我尝试了以下代码:
#include <stdio.h>
#include <linux/reboot.h>
#include <unistd.h>
int main()
{
reboot(LINUX_REBOOT_CMD_RESTART);
}
它运作良好!但我想知道的是在重新启动内核后我丢失了正在保存的文件。我的意思是如果使用此代码,“url”文件在重新启动后不会保存。
int main()
{
FILE *pFile = fopen("url", "a"); // for .txt file
// write to file/read from file ... etc
fclose(pFile);
int fdUART = open("/dev/ttySAC0", O_RDWR | O_NOCTTY | O_NDELAY);
// some operations on UART port
close(fdUART);
/* Ethernet raw package process*/
/* Char dev driver open and communicate with FPGA fifo */
/* so on */
reboot(LINUX_REBOOT_CMD_RESTART);
}
我正在使用 UART、以太网、字符驱动程序,只是想知道 reboot() 调用系统对我的系统的影响。
任何帮助都非常感谢。