📄 rtems_bootp.c
字号:
/* * $Id: rtems_bootp.c,v 1.4 2002/10/28 13:56:01 joel Exp $ */#include <rtems.h>#include <rtems/error.h>#include <sys/types.h>#include <rtems/rtems_bsdnet.h>#include <rtems/rtems_bsdnet_internal.h>/* * Perform a BOOTP request */voidrtems_bsdnet_do_bootp (void){ rtems_bsdnet_semaphore_obtain (); bootpc_init (FALSE); rtems_bsdnet_semaphore_release ();}/* * Perform a BOOTP request and update "standard" files in /etc * with the results. */voidrtems_bsdnet_do_bootp_and_rootfs (void){ rtems_bsdnet_semaphore_obtain (); bootpc_init (TRUE); rtems_bsdnet_semaphore_release ();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -