summaryrefslogtreecommitdiff
path: root/src/priority_queue.erl
Commit message (Collapse)AuthorAgeFilesLines
* s/bool()/boolean() in type specsbug21714Matthias Radestock2009-09-301-2/+2
| | | | since in R13B02 erlc spits out deprecation warnings otherwise
* New branch for bug 21425Matthew Sackman2009-08-191-1/+39
|
* Fixed unused-variable warningTony Garnock-Jones2009-04-241-1/+1
|
* handle negative prioritiesbug20354Matthias Radestock2009-04-151-0/+2
|
* add some signaturesMatthias Radestock2009-03-311-0/+21
|
* fix bugMatthias Radestock2009-03-311-1/+1
|
* small simplificationMatthias Radestock2009-03-311-2/+2
|
* don't call into queue module and don't break its encapsulationMatthias Radestock2009-03-311-12/+15
|
* fix bugMatthias Radestock2009-03-131-1/+1
|
* change representation from gb_tree to kv listMatthias Radestock2009-03-131-42/+43
| | | | which is much more efficient for small numbers of priorities; the common case.
* make in/2 insert items that are low priorityMatthias Radestock2009-03-121-6/+6
| | | | and make to_list do something sensible.
* another bug fixMatthias Radestock2009-03-121-1/+1
|
* fix bugMatthias Radestock2009-03-121-1/+2
|
* first cut at extending gen_server2 with prioritiesMatthias Radestock2009-03-121-0/+125
This just changes the representation of the message queue; the API changes are still to come.