Use kref implementation from kcompat
[ust.git] / share / kref.h
diff --git a/share/kref.h b/share/kref.h
deleted file mode 100644 (file)
index ffb488c..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * kref.h - library routines for handling generic reference counted objects
- *
- * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
- * Copyright (C) 2004 IBM Corp.
- *
- * based on kobject.h which was:
- * Copyright (C) 2002-2003 Patrick Mochel <mochel@osdl.org>
- * Copyright (C) 2002-2003 Open Source Development Labs
- *
- * This file is released under the GPLv2.
- *
- */
-
-#ifndef _KREF_H_
-#define _KREF_H_
-
-//ust// #include <linux/types.h>
-//ust// #include <asm/atomic.h>
-#include <kernelcompat.h>
-
-struct kref {
-       atomic_t refcount;
-};
-
-void kref_set(struct kref *kref, int num);
-void kref_init(struct kref *kref);
-void kref_get(struct kref *kref);
-int kref_put(struct kref *kref, void (*release) (struct kref *kref));
-
-#endif /* _KREF_H_ */
This page took 0.029057 seconds and 4 git commands to generate.