Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from cs-pub-ro:main #350

Open
wants to merge 75 commits into
base: main
Choose a base branch
from

Conversation

pull[bot]
Copy link

@pull pull bot commented Mar 10, 2024

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

elena19m and others added 30 commits October 9, 2023 13:34
Current link in lab-setup.md points to
https://github.com/open-education-hub/operating-systems.
This commit changes the link to
https://github.com/cs-pub-ro/operating-systems.

Signed-off-by: Elena Mihailescu <elenamihailescu22@gmail.com>
Add grading rules for the Operating Systems course.

Signed-off-by: Alex Apostolescu <alexx.apostolescu@gmail.com>
Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Word should be past participle, not syscall name.

Signed-off-by: PetruCristian <naniacristian@yahoo.com>
Update `README.md` with current structure of directory (e.g. use `src/`
instead of `libc/`). Detail use of `grade.sh` and `make lint`.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
The `grade.sh` script computes the final project grade, from two
components: checker output and style checking.

Currently, checker output provides a maximum of 90 points and style
checking an output of maximum 10 points, for a total maximum of 100
points.

Script it to be symlinked to the `tests/` directory of each project.
It invokes the `check` rule and the `lint` rule in the tests Makefile,
then proceeds to compute the summary result.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Qemu seems to be the most suitable choice for running the operating-systems
VM on macOS (at least on M1 systems).
Add instructions and scripts for running the VM on macOS.

Signed-off-by: Razvan Virtan <virtanrazvan@gmail.com>
Missing -fno-builtin flag from Makefile caused the compiler to substitute
str* calls from
content/chapters/software-stack/lab/support/common-functions/main_string
with builin functions, instead of use custom implementations from
content/chapters/software-stack/lab/support/common-functions/string.c.

Signed-off-by: Liza Babu <lizza.babu@gmail.com>
Rewrote part of a sentence to help ensure clarity.

Signed-off-by: Dimitrie Valu <valu.d54@gmail.com>
Changed the wrong value of the variable "a" in the explained comment
from "7" to "42".
Signed-off-by: Andrei-Valerian Andreescu <drescoandrei121@gmail.com>
When using `mtrace`, the program needs to be loaded with the malloc
debugging library. Use `LD_PRELOAD` for that. This may not be required
for certain systems. Also, the file path used for `LD_PRELOAD` may be
required to be updated, depending on the Linux distribution used.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Remove empty sections from the arena.

Signed-off-by: Alex Apostolescu <alexx.apostolescu@gmail.com>
The URL was `http://open-education-hub.github.io/...`. This was incorrect
for forked repos as it referred to the original owner: OEH. In addition,
it was using the `http` scheme instead of `https`. This was less of an
issue because the `http` endpoint redirects to `https`.

This commit fixes both of the aforementioned problems by dynamically
obtaining the owner uwing `${{ github.repository_owner }}` and by using
`https` instead of `http`.

Signed-off-by: Teodor Dutu <teodor.dutu@gmail.com>
Add arm skeleton from basic-syscall exercise

Signed-off-by: Andrei Lipan <andreivlipan2003@gmail.com>
Update `README.md` with details on using `grade.sh` and `make lint`. Use
`run_tests.py` instead of `run-tests.py` in `README.md`.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Use `run_tests.py` instead of `run-tests.py` in `tests/Makefile`.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
`out/` directory is not longer used by tests.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Use correct and complete targets for `lint` target in `tests/Makefile`.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Wrong path (it is a folder from the git repository)

Signed-off-by: D9nni <78950235+D9nni@users.noreply.github.com>
Add vscode script for running and debugging the assignment's tests.
Use python3 instead of python in Makefile and README.md.

Signed-off-by: Alex Apostolescu <alexx.apostolescu@gmail.com>
Do not test block expansion in malloc=split-one-block.

Signed-off-by: Alex Apostolescu <alexx.apostolescu@gmail.com>
Do not test block expansion in realloc-split-one-block.

Signed-off-by: Alex Apostolescu <alexx.apostolescu@gmail.com>
Add resources for the Operating Systems course.

Signed-off-by: Stefan Jumarea <stefanjumarea02@gmail.com>
A challenge to exercise working with mmap().

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
A challenge to exercise working with mmap() and memory copying.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
A challenge to exercise mprotect() and an intro in SIGSEGV handling.

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Fix: "assignement" -> "assignment"

Signed-off-by: Razvan Deaconescu <razvan.deaconescu@upb.ro>
Fix access_counter.c typos

Signed-off-by: Popa Ioan Alexandru <alexioanpopa11@gmail.com>
The old link to the linux `checkpatch.pl` was broken. Fix it by adding
`github.com` to the url.

Signed-off-by: Stefan Jumarea <stefanjumarea02@gmail.com>
GCC 9.3 doesn't link against libpthread by default, so setting LDLIBS
accordingly is required.

Signed-off-by: Razvan Miclius <razvan.miclius@stud.acs.pub.ro>
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 18, 2024
@pull pull bot removed area/infra Update to infrastructure / scripts kind/new New content / item labels May 18, 2024
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 19, 2024
@pull pull bot removed area/infra Update to infrastructure / scripts kind/new New content / item labels May 19, 2024
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 19, 2024
@pull pull bot removed area/infra Update to infrastructure / scripts kind/new New content / item labels May 19, 2024
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 20, 2024
@pull pull bot removed area/infra Update to infrastructure / scripts kind/new New content / item labels May 20, 2024
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 20, 2024
@pull pull bot removed area/infra Update to infrastructure / scripts kind/new New content / item labels May 21, 2024
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 22, 2024
@pull pull bot removed area/infra Update to infrastructure / scripts kind/new New content / item labels May 22, 2024
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 22, 2024
@pull pull bot removed area/infra Update to infrastructure / scripts kind/new New content / item labels May 22, 2024
@github-actions github-actions bot added area/infra Update to infrastructure / scripts kind/new New content / item labels May 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/infra Update to infrastructure / scripts ⤵️ pull kind/new New content / item merge-conflict Resolve conflicts manually
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet