Commit bea16cae authored by Christopher Friedt's avatar Christopher Friedt Committed by Carles Cufi
Browse files

posix: correct struct label for pthread_attr_t



Normally, for typedef'ed structures, the struct label should not
end in `_t`.

Signed-off-by: default avatarChris Friedt <cfriedt@meta.com>
parent f5cfeae1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ typedef unsigned long timer_t;

#ifdef CONFIG_PTHREAD_IPC
/* Thread attributes */
typedef struct pthread_attr_t {
typedef struct pthread_attr {
	int priority;
	void *stack;
	size_t stacksize;