Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Victrid/CS356-project-1
Android Process Tree
https://github.com/Victrid/CS356-project-1
Last synced: about 1 month ago
JSON representation
Android Process Tree
- Host: GitHub
- URL: https://github.com/Victrid/CS356-project-1
- Owner: Victrid
- Created: 2021-04-08T06:35:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T15:56:25.000Z (over 3 years ago)
- Last Synced: 2024-08-01T19:44:19.497Z (4 months ago)
- Language: C
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-cs - @Victrid, 2021 Spring
README
# CS356: OS Project 1: Android Process Tree
## Build and run
First edit the android.source.sh with its internal instructions, and
`source ./android.source.sh` to have the correct environment variables
and PATH.With the Makefile in the root folder, you may use these commands to build:
Build all:
```
make
make build_all
```Build the module or executable in the folder
```
make {folder name}
```If you want to check the code with AVD please
- create an AVD and run `./run-sim.sh` separately.
- or create an avd.lock file in the directory to indicate AVD is created.Then you may use these commands:
To run the testrun, which would compose testrun contents
```
make testrun
```Push executable and modules to DEST_FOLDERS defined in the Makefile
```
make push_all
make push_{folder name without extensions}
```load/unload the module
```
make load_{module folder name without extensions}
make unload_{module folder name without extensions}
```