Skip to content

Commit

Permalink
various fixes to #9, #10, and #14
Browse files Browse the repository at this point in the history
  • Loading branch information
nouredd2 committed Jun 11, 2024
1 parent e841209 commit 75be709
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion labs/ext2/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ instructions:
$ git pull upstream main
```
At this stage, you should have the latest copy of the code, and you are good to
get started. The starter code is contained under the `threads_basics/` directory.
get started. The starter code is contained under the `ext2/` directory.

If you are currently on a different branch (say you are still on
`clab_solution` from a previous lab), then we need to switch to `main` or
Expand Down
4 changes: 2 additions & 2 deletions labs/heapmm/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,10 @@ struct __attribute__((aligned(8))) metadata {
struct metadata *prev; /* The prev pointer in the linked list. */
};
```
and then we define a new type based on this union to make it easier to code
and then we define a new type based on this structure to make it easier to code
using:
```c
typedef union metadata metadata_t;
typedef struct metadata metadata_t;
```
The members of `struct metadata` are explained in the comments above. The
Expand Down
2 changes: 1 addition & 1 deletion labs/lab00/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ you are working on the right stuff.

If you have not done so yet, please make sure that you have set up your class
labs repository by following the [appropriate
instructions.]({{site.baseurl}}{{site.resourcespath}}/setup)
instructions.]({{site.baseurl}}/labs/wsl)

Now that you are in the right repository, first make sure you are on the `main`
branch:
Expand Down

0 comments on commit 75be709

Please sign in to comment.