[asterisk-commits] russell: trunk r176632 - in /trunk: include/asterisk/ main/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Feb 17 14:51:10 CST 2009


Author: russell
Date: Tue Feb 17 14:51:10 2009
New Revision: 176632

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=176632
Log:
Add an implementation of the heap data structure.

A heap is a convenient data structure for implementing a priority queue.

Code from svn/asterisk/team/russell/heap/.

Review: http://reviewboard.digium.com/r/160/

Added:
    trunk/include/asterisk/heap.h
      - copied unchanged from r176630, team/russell/heap/include/asterisk/heap.h
    trunk/main/heap.c
      - copied unchanged from r176630, team/russell/heap/main/heap.c
Modified:
    trunk/main/Makefile

Modified: trunk/main/Makefile
URL: http://svn.digium.com/svn-view/asterisk/trunk/main/Makefile?view=diff&rev=176632&r1=176631&r2=176632
==============================================================================
--- trunk/main/Makefile (original)
+++ trunk/main/Makefile Tue Feb 17 14:51:10 2009
@@ -18,7 +18,7 @@
 include $(ASTTOPDIR)/Makefile.moddir_rules
 
 OBJS= tcptls.o io.o sched.o logger.o frame.o loader.o config.o channel.o \
-	translate.o file.o pbx.o cli.o md5.o term.o \
+	translate.o file.o pbx.o cli.o md5.o term.o heap.o \
 	ulaw.o alaw.o callerid.o fskmodem.o image.o app.o \
 	cdr.o tdd.o acl.o rtp.o udptl.o manager.o asterisk.o \
 	dsp.o chanvars.o indications.o autoservice.o db.o privacy.o \




More information about the asterisk-commits mailing list