Skip to content

Commit

Permalink
[PR review] #74 comment resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
turon committed Mar 19, 2020
1 parent fec7b56 commit dfd86af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Run Build
run: ./bootstrap && make -f Makefile-Standalone distcheck

- name: Run Pretty Check
run: |
sudo apt install clang-format-9
./bootstrap
make -f Makefile-Standalone pretty-check
- name: Run Build
run: ./bootstrap && make -f Makefile-Standalone distcheck
7 changes: 4 additions & 3 deletions src/system/SystemMutex.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ namespace System {
*
* @brief
* This class represents a simple mutual exclusion lock used on platforms with preemptively scheduled multi-threaded
* programming environments, for example, POSIX threads and FreeRTOS. The lock is non-recursive, and may not be used in a
* hardware interrupt context. The constructor and destructor are defined as null functions to facilitate using objects with \c
* static storage duration and uninitialized memory. Use \c Init method to initialize. The copy/move operators are not provided.
* programming environments, for example, POSIX threads and FreeRTOS. The lock is non-recursive, and may not be used
* in a hardware interrupt context. The constructor and destructor are defined as null functions to facilitate using
* objects with \c static storage duration and uninitialized memory. Use \c Init method to initialize. The copy/move
* operators are not provided.
*
*/
class DLL_EXPORT Mutex
Expand Down

0 comments on commit dfd86af

Please sign in to comment.