aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authortimr <timr@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-14 01:58:59 +0000
committertimr <timr@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-14 01:58:59 +0000
commit9717b74d98e5422c72d22fe6b4e49ba83309bea1 (patch)
treea056983d1162502b58e2aca4c2ebf3c9c7b9c6be /include
parent4fd25dc69c14e33ae10f6ca2715295a2617dade7 (diff)
downloadbusybox-w32-9717b74d98e5422c72d22fe6b4e49ba83309bea1.tar.gz
busybox-w32-9717b74d98e5422c72d22fe6b4e49ba83309bea1.tar.bz2
busybox-w32-9717b74d98e5422c72d22fe6b4e49ba83309bea1.zip
rmmod -a removed modules recursively
git-svn-id: svn://busybox.net/trunk/busybox@6214 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
-rw-r--r--include/usage.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 5f437a95f..3523cc410 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -357,6 +357,8 @@ typedef struct {
357extern procps_status_t * procps_scan(int save_user_arg0); 357extern procps_status_t * procps_scan(int save_user_arg0);
358extern unsigned short compare_string_array(const char *string_array[], const char *key); 358extern unsigned short compare_string_array(const char *string_array[], const char *key);
359 359
360extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret);
361
360typedef struct llist_s { 362typedef struct llist_s {
361 char *data; 363 char *data;
362 struct llist_s *link; 364 struct llist_s *link;
diff --git a/include/usage.h b/include/usage.h
index 3b519e65d..16dd6fd78 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -1722,7 +1722,7 @@
1722#define rmmod_full_usage \ 1722#define rmmod_full_usage \
1723 "Unloads the specified kernel modules from the kernel.\n\n" \ 1723 "Unloads the specified kernel modules from the kernel.\n\n" \
1724 "Options:\n" \ 1724 "Options:\n" \
1725 "\t-a\tTry to remove all unused kernel modules." 1725 "\t-a\tRemove all unused modules (recursively)"
1726#define rmmod_example_usage \ 1726#define rmmod_example_usage \
1727 "$ rmmod tulip\n" 1727 "$ rmmod tulip\n"
1728 1728