summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pjlib/include/pj/timer.h8
-rw-r--r--pjlib/src/pj/timer.c13
2 files changed, 18 insertions, 3 deletions
diff --git a/pjlib/include/pj/timer.h b/pjlib/include/pj/timer.h
index bcc4bb92..cf3d1d79 100644
--- a/pjlib/include/pj/timer.h
+++ b/pjlib/include/pj/timer.h
@@ -1,7 +1,5 @@
/* $Id$ */
/*
- * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
- *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@@ -47,6 +45,12 @@ PJ_BEGIN_DECL
* the heap. This allows us to completely remove the need for
* dynamic memory allocation, which is important for real-time
* systems.
+ *
+ * You can find the fine ACE library at:
+ * http://www.cs.wustl.edu/~schmidt/ACE.html
+ *
+ * ACE is Copyright (C)1993-2006 Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
+ *
* @{
*
* \section pj_timer_examples_sec Examples
diff --git a/pjlib/src/pj/timer.c b/pjlib/src/pj/timer.c
index 6f7a2216..e96a3e54 100644
--- a/pjlib/src/pj/timer.c
+++ b/pjlib/src/pj/timer.c
@@ -1,7 +1,18 @@
/* $Id$ */
/*
- * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
+ * The PJLIB's timer heap is based (or more correctly, copied and modied)
+ * from ACE library by Douglas C. Schmidt. ACE is an excellent OO framework
+ * that implements many core patterns for concurrent communication software.
+ * If you're looking for C++ alternative of PJLIB, then ACE is your best
+ * solution.
*
+ * You may use this file according to ACE open source terms or PJLIB open
+ * source terms. You can find the fine ACE library at:
+ * http://www.cs.wustl.edu/~schmidt/ACE.html
+ *
+ * ACE is Copyright (C)1993-2006 Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
+ *
+ * GNU Public License:
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or