aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranciszek Malinka <franciszek.malinka@gmail.com>2022-10-24 22:01:56 +0200
committerFranciszek Malinka <franciszek.malinka@gmail.com>2022-10-24 22:01:56 +0200
commit0529928f91977e35796daf07d2c406547ae79277 (patch)
treec6e745369ef74e901df6f9ec422a6c2571f2e597
parent806dc781b67daf18aa30ca1f9cf367fe568406cb (diff)
Added README.mdHEADmaster
-rw-r--r--.github/.keep0
-rw-r--r--.github/classroom/autograding.json22
-rw-r--r--.github/workflows/classroom.yml16
-rw-r--r--Makefile1
-rw-r--r--README.md4
5 files changed, 5 insertions, 38 deletions
diff --git a/.github/.keep b/.github/.keep
deleted file mode 100644
index e69de29..0000000
--- a/.github/.keep
+++ /dev/null
diff --git a/.github/classroom/autograding.json b/.github/classroom/autograding.json
deleted file mode 100644
index 53606f3..0000000
--- a/.github/classroom/autograding.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "tests": [
- {
- "name": "Build",
- "run": "make",
- "input": "",
- "output": "",
- "comparison": "included",
- "timeout": 10,
- "points": 1
- },
- {
- "name": "Grade solution",
- "run": "make grade",
- "input": "",
- "output": "",
- "comparison": "included",
- "timeout": 10,
- "points": 1
- }
- ]
-}
diff --git a/.github/workflows/classroom.yml b/.github/workflows/classroom.yml
deleted file mode 100644
index ba27568..0000000
--- a/.github/workflows/classroom.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-name: GitHub Classroom Workflow
-
-on: [push]
-
-jobs:
- build:
- name: Autograding
- runs-on: ubuntu-latest
- container: cahirwpz/ii-so:latest
- steps:
- - uses: actions/checkout@v2
- - name: Check code formatting
- run: ./run-clang-format.sh
- - name: Check for unauthorized modifications
- run: ./check-files.py
- - uses: education/autograding@v1
diff --git a/Makefile b/Makefile
index d34e351..483da2b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
CC = gcc -g
+# CFLAGS = -Og -Wall -Werror -DDRIVER -fsanitize=address -fsanitize=undefined
CFLAGS = -O3 -Wall -Werror -DDRIVER
OBJS = mdriver.o mm.o memlib.o
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7ecd7e3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+# Malloc implementation
+
+This project was done as one of assignments for the Operating Systems course
+on my University.