|
WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
|
函数 | |
| void | osal_proc_init (const char *name) |
| Create a directory in /proc. | |
| void | osal_proc_exit (const char *name) |
| Delete the directory created by osal_proc_init() and all the files in the directory. | |
| void | osal_remove_proc_entry (const char *name, osal_proc_entry *parent) |
| Delete the file created by the function osal_create_proc_entry. | |
| osal_proc_entry * | osal_create_proc_entry (const char *name, osal_proc_entry *parent) |
| Create a file in the directory created by the function osal_proc_init. | |
| osal_proc_entry * osal_create_proc_entry | ( | const char * | name, |
| osal_proc_entry * | parent | ||
| ) |
Create a file in the directory created by the function osal_proc_init.
| name | [in] Name of the directory to be created. |
| parent | [in] Reserved parameter, not used for now. |
| void osal_proc_exit | ( | const char * | name | ) |
Delete the directory created by osal_proc_init() and all the files in the directory.
| name | [in] Name of the directory to be deleted, created by osal_proc_init(). |
| void osal_proc_init | ( | const char * | name | ) |
Create a directory in /proc.
| name | [in] Name of the directory to be created. |
| void osal_remove_proc_entry | ( | const char * | name, |
| osal_proc_entry * | parent | ||
| ) |
Delete the file created by the function osal_create_proc_entry.
| name | [in] The file name, same as the first parameter of osal_create_proc_entry. |
| parent | [in] osal_proc_entry*, returned by the osal_create_proc_entry. |