From 77d6609bbd46303b79a1bb1b58dfae63f6428bc7 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 26 Apr 2016 20:19:19 -0400 Subject: [PATCH] fixup comments --- src/ioc/dbStatic/dbStaticLib.c | 1 - src/libCom/ellLib/ellSort.c | 8 ++++++++ src/libCom/test/epicsEllTest.c | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/ioc/dbStatic/dbStaticLib.c b/src/ioc/dbStatic/dbStaticLib.c index 6cbefe61c..166979655 100644 --- a/src/ioc/dbStatic/dbStaticLib.c +++ b/src/ioc/dbStatic/dbStaticLib.c @@ -1425,7 +1425,6 @@ long dbCreateRecord(DBENTRY *pdbentry,const char *precordName) if((status = dbAllocRecord(pdbentry,precordName))) return(status); pNewRecNode->recordname = dbRecordName(pdbentry); ellInit(&pNewRecNode->infoList); - /* install record node in list in sorted postion */ ellAdd(preclist, &pNewRecNode->node); pdbentry->precnode = pNewRecNode; ppvd = dbPvdAdd(pdbentry->pdbbase,precordType,pNewRecNode); diff --git a/src/libCom/ellLib/ellSort.c b/src/libCom/ellLib/ellSort.c index 89f3f3819..ee5f68ca4 100644 --- a/src/libCom/ellLib/ellSort.c +++ b/src/libCom/ellLib/ellSort.c @@ -1,3 +1,11 @@ +/*************************************************************************\ +* Copyright (c) 2014 Brookhaven Science Assoc., as Operator of Argonne +* National Laboratory. +* Copyright (c) 2016 Michael Davidsaver +* EPICS BASE is distributed subject to a Software License Agreement found +* in file LICENSE that is included with this distribution. +\*************************************************************************/ + /* * Use of mergesort algorithm based on analysis by * http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html diff --git a/src/libCom/test/epicsEllTest.c b/src/libCom/test/epicsEllTest.c index 59a23df0a..78c695466 100644 --- a/src/libCom/test/epicsEllTest.c +++ b/src/libCom/test/epicsEllTest.c @@ -1,4 +1,5 @@ /*************************************************************************\ +* Copyright (c) 2016 Michael Davidsaver * Copyright (c) 2009 UChicago Argonne LLC, as Operator of Argonne * National Laboratory. * Copyright (c) 2002 The Regents of the University of California, as