summaryrefslogtreecommitdiff
path: root/sys/src/libndb/ndbdiscard.c
diff options
context:
space:
mode:
authorTaru Karttunen <taruti@taruti.net>2011-03-30 15:46:40 +0300
committerTaru Karttunen <taruti@taruti.net>2011-03-30 15:46:40 +0300
commite5888a1ffdae813d7575f5fb02275c6bb07e5199 (patch)
treed8d51eac403f07814b9e936eed0c9a79195e2450 /sys/src/libndb/ndbdiscard.c
Import sources from 2011-03-30 iso image
Diffstat (limited to 'sys/src/libndb/ndbdiscard.c')
-rwxr-xr-xsys/src/libndb/ndbdiscard.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/sys/src/libndb/ndbdiscard.c b/sys/src/libndb/ndbdiscard.c
new file mode 100755
index 000000000..ea557ffc5
--- /dev/null
+++ b/sys/src/libndb/ndbdiscard.c
@@ -0,0 +1,30 @@
+#include <u.h>
+#include <libc.h>
+#include <bio.h>
+#include <ndb.h>
+
+/* remove a from t and free it */
+Ndbtuple*
+ndbdiscard(Ndbtuple *t, Ndbtuple *a)
+{
+ Ndbtuple *nt;
+
+ /* unchain a */
+ for(nt = t; nt != nil; nt = nt->entry){
+ if(nt->line == a)
+ nt->line = a->line;
+ if(nt->entry == a)
+ nt->entry = a->entry;
+ }
+
+ /* a may be start of chain */
+ if(t == a)
+ t = a->entry;
+
+ /* free a */
+ a->entry = nil;
+ ndbfree(a);
+
+ ndbsetmalloctag(t, getcallerpc(&t));
+ return t;
+}