Skip to content
This repository was archived by the owner on Aug 19, 2021. It is now read-only.

Commit c3e6189

Browse files
committed
Updated license
1 parent da0e401 commit c3e6189

File tree

10 files changed

+58
-3
lines changed

10 files changed

+58
-3
lines changed

LICENSE

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
Copyright (c) 2016 Christopher Haster
22

3-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3+
Permission is hereby granted, free of charge, to any person obtaining a
4+
copy of this software and associated documentation files (the "Software"),
5+
to deal in the Software without restriction, including without limitation
6+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
and/or sell copies of the Software, and to permit persons to whom the
8+
Software is furnished to do so, subject to the following conditions:
49

5-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
612

7-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
DEALINGS IN THE SOFTWARE.

events.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Flexible event queue for dispatching events
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
6+
*/
17
#include "events.h"
28

39
#include <stdlib.h>

events.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
22
* Flexible event queue for dispatching events
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
36
*/
47
#ifndef EVENTS_H
58
#define EVENTS_H

events_mbed.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Implementation for the mbed library
3+
* https://github.com/mbedmicro/mbed
4+
*
5+
* Copyright (c) 2016 Christopher Haster
6+
* Distributed under the MIT license
7+
*/
18
#if defined(__MBED__)
29

310
#include "events_tick.h"

events_mutex.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
22
* System specific mutex implementation
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
36
*/
47
#ifndef EVENTS_MUTEX_H
58
#define EVENTS_MUTEX_H

events_posix.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Implementation for Posix compliant platforms
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
6+
*/
17
#if defined(__unix__)
28

39
#include "events_tick.h"

events_sema.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
22
* System specific semaphore implementation
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
36
*/
47
#ifndef EVENTS_SEMA_H
58
#define EVENTS_SEMA_H

events_tick.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/*
22
* System specific tick implementation
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
36
*/
47
#ifndef EVENTS_TICK_H
58
#define EVENTS_TICK_H

tests/prof.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Profiling framework for the events library
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
6+
*/
17
#include "events.h"
28
#include <unistd.h>
39
#include <stdio.h>

tests/tests.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Testing framework for the events library
3+
*
4+
* Copyright (c) 2016 Christopher Haster
5+
* Distributed under the MIT license
6+
*/
17
#include "events.h"
28
#include <unistd.h>
39
#include <stdio.h>

0 commit comments

Comments
 (0)