Changeset 681a985 in mainline for uspace/lib/bithenge


Ignore:
Timestamp:
2012-08-17T04:30:42Z (13 years ago)
Author:
Sean Bartell <wingedtachikoma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3a7356dc
Parents:
b224a3e
Message:

Bithenge: move library to uspace/lib

Location:
uspace/lib/bithenge
Files:
3 added
24 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/bithenge/expression.h

    rb224a3e r681a985  
    7373                return;
    7474        assert(self->ops);
     75        assert(self->refs > 0);
    7576        if (--self->refs == 0)
    7677                self->ops->destroy(self);
  • uspace/lib/bithenge/transform.h

    rb224a3e r681a985  
    110110                return;
    111111        assert(self->ops);
     112        assert(self->refs > 0);
    112113        if (--self->refs == 0)
    113114                self->ops->destroy(self);
  • uspace/lib/bithenge/tree.c

    rb224a3e r681a985  
    7676        if (!node)
    7777                return;
     78        assert (node->refs > 0);
    7879        if (--node->refs == 0)
    7980                node_destroy(node);
Note: See TracChangeset for help on using the changeset viewer.