Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 983d056

Browse files
committedAug 1, 2014
core: harmonizes the data type for the process ID
Instead of using differing integer types use kernel_pid_t for process identifier. This type is introduced in a new header file to avoid circular dependencies.
1 parent 4546c3f commit 983d056

File tree

98 files changed

+350
-306
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+350
-306
lines changed
 

‎boards/avsextrem/drivers/avsextrem-smb380.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#include "lpc2387.h"
4545

4646

47-
uint8_t simple_pid;
47+
kernel_pid_t simple_pid;
4848
int16_t simple_buffer[4];
4949

5050
volatile int16_t *ringBuff_X = NULL;
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef __UART0_H
22
#define __UART0_H
33

4-
extern int uart0_handler_pid;
4+
extern kernel_pid_t uart0_handler_pid;
55

66
#endif /* __UART0_H */

0 commit comments

Comments
 (0)
Please sign in to comment.