Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
figures/ | 12-May-2024 | - | ||||
interfaces/innerkits/ | 12-May-2024 | - | 278 | 127 | ||
src/ | 12-May-2024 | - | 2,308 | 1,632 | ||
test/ | 12-May-2024 | - | 3,226 | 1,925 | ||
tools/ | 12-May-2024 | - | 75 | 56 | ||
.gitattributes | D | 12-May-2024 | 631 | 16 | 15 | |
BUILD.gn | D | 12-May-2024 | 6.1 KiB | 191 | 172 | |
LICENSE | D | 12-May-2024 | 10.1 KiB | 177 | 150 | |
OAT.xml | D | 12-May-2024 | 3.9 KiB | 69 | 15 | |
README.md | D | 12-May-2024 | 982 | 38 | 23 | |
README_zh.md | D | 12-May-2024 | 670 | 32 | 16 | |
appspawn.cfg | D | 12-May-2024 | 559 | 16 | 14 | |
appspawn.gni | D | 12-May-2024 | 1,009 | 26 | 23 | |
appspawn.rc | D | 12-May-2024 | 753 | 23 | 20 | |
bundle.json | D | 12-May-2024 | 2 KiB | 62 | 62 | |
nwebspawn.cfg | D | 12-May-2024 | 823 | 23 | 22 |
README.md
1# Startup<a name="EN-US_TOPIC_0000001078883578"></a> 2 3- [Introduction](#section11660541593) 4- [Directory Structure](#section161941989596) 5- [Repositories Involved](#section1371113476307) 6 7## Introduction<a name="section11660541593"></a> 8 9Appspawn is responsible for creating application process and setting process information function. 10 11## Directory Structure<a name="section161941989596"></a> 12 13``` 14base/startup/appspawn_standard 15├── include # include directory 16├── parameter # system parameters 17├── src # source code 18│ └── socket # encapsulation of socket basic library 19└── test # test code 20``` 21 22## Repositories Involved<a name="section1371113476307"></a> 23 24Startup subsystem 25 26hmf/startup/syspara\_lite 27 28**hmf/startup/appspawn_standard** 29 30hmf/startup/appspawn\_lite 31 32hmf/startup/bootstrap\_lite 33 34hmf/startup/startup 35 36hmf/startup/systemrestore 37 38
README_zh.md
1# appspawn应用孵化器组件 2 3## 简介 4 5应用孵化器,负责接受应用程序框架的命令孵化应用进程,设置其对应权限,并调用应用程序框架的入口。 6 7其主要的结构及流程如下图所示: 8 9 10 11 12 13## 目录 14 15``` 16base/startup/appspawn_standard 17├── include # 应用孵化器组件头文件 18├── parameter # 应用孵化器组件系统参数 19├── src # 应用孵化器组件源文件 20└── test # 应用孵化器组件测试代码 21``` 22 23 24 25 26## 相关仓 27 28appspawn应用孵化器组件 29 30**startup_appspawn** 31 32