aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorHo-Eun Ryu <ho-eun.ryu@windriver.com>2009-10-28 19:39:49 +0900
committerPatrick Tjin <pattjin@google.com>2014-07-21 22:03:33 -0700
commit30bd6062e4b295f5f7bcaeb98165065310d29269 (patch)
treef03e202e2c0d1ffb75137a514fffeff83a52e794 /utils
parent918ef361f272e1de80167545857c23b6060775d6 (diff)
downloadwrs_omxil_core-30bd6062e4b295f5f7bcaeb98165065310d29269.tar.gz
misc: add windriver standard copyright
Diffstat (limited to 'utils')
-rw-r--r--utils/inc/audio_parser.h7
-rw-r--r--utils/inc/list.h7
-rw-r--r--utils/inc/log.h7
-rw-r--r--utils/inc/module.h7
-rw-r--r--utils/inc/queue.h7
-rw-r--r--utils/inc/thread.h7
-rw-r--r--utils/inc/workqueue.h7
-rw-r--r--utils/src/audio_parser.c7
-rw-r--r--utils/src/list.c7
-rw-r--r--utils/src/module.c7
-rw-r--r--utils/src/queue.c7
-rw-r--r--utils/src/thread.cpp7
-rw-r--r--utils/src/workqueue.cpp7
13 files changed, 65 insertions, 26 deletions
diff --git a/utils/inc/audio_parser.h b/utils/inc/audio_parser.h
index ea509f4..d68ee10 100644
--- a/utils/inc/audio_parser.h
+++ b/utils/inc/audio_parser.h
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#ifndef __WRS_OMXIL_AUDIO_PARSER
diff --git a/utils/inc/list.h b/utils/inc/list.h
index 318b1bf..c0fb944 100644
--- a/utils/inc/list.h
+++ b/utils/inc/list.h
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#ifndef __LIST_H
diff --git a/utils/inc/log.h b/utils/inc/log.h
index fa2689e..7d42166 100644
--- a/utils/inc/log.h
+++ b/utils/inc/log.h
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#ifndef __LOG_H
diff --git a/utils/inc/module.h b/utils/inc/module.h
index 0195726..ab97bdc 100644
--- a/utils/inc/module.h
+++ b/utils/inc/module.h
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#ifndef __MODULE_H
diff --git a/utils/inc/queue.h b/utils/inc/queue.h
index d27e710..1e78f63 100644
--- a/utils/inc/queue.h
+++ b/utils/inc/queue.h
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#ifndef __QUEUE_H
diff --git a/utils/inc/thread.h b/utils/inc/thread.h
index 5ac1e05..1cabd45 100644
--- a/utils/inc/thread.h
+++ b/utils/inc/thread.h
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#ifndef __THREAD_H
diff --git a/utils/inc/workqueue.h b/utils/inc/workqueue.h
index 336f144..584803e 100644
--- a/utils/inc/workqueue.h
+++ b/utils/inc/workqueue.h
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#ifndef __WORKQUEUE_H
diff --git a/utils/src/audio_parser.c b/utils/src/audio_parser.c
index 7d95738..66f569f 100644
--- a/utils/src/audio_parser.c
+++ b/utils/src/audio_parser.c
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#include <endian.h>
diff --git a/utils/src/list.c b/utils/src/list.c
index 220f61a..0b17475 100644
--- a/utils/src/list.c
+++ b/utils/src/list.c
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#include <stdlib.h>
diff --git a/utils/src/module.c b/utils/src/module.c
index 52f9822..5f0f6d2 100644
--- a/utils/src/module.c
+++ b/utils/src/module.c
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#include <string.h>
diff --git a/utils/src/queue.c b/utils/src/queue.c
index b34a42f..e0eace9 100644
--- a/utils/src/queue.c
+++ b/utils/src/queue.c
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#include <stdlib.h>
diff --git a/utils/src/thread.cpp b/utils/src/thread.cpp
index 4723851..eb3bf59 100644
--- a/utils/src/thread.cpp
+++ b/utils/src/thread.cpp
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#include <pthread.h>
diff --git a/utils/src/workqueue.cpp b/utils/src/workqueue.cpp
index 72e693d..132def7 100644
--- a/utils/src/workqueue.cpp
+++ b/utils/src/workqueue.cpp
@@ -1,6 +1,9 @@
/*
- * Copyright (C) 2009 Wind River Systems
- * Author: Ho-Eun Ryu <ho-eun.ryu@windriver.com>
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ *
+ * The right to copy, distribute, modify, or otherwise make use
+ * of this software may be licensed only pursuant to the terms
+ * of an applicable Wind River license agreement.
*/
#include <workqueue.h>