[patch 3/6] openmosix/openmosix-depuuty-fix-warning.patch
Florian Delizy <[email protected]> Mon, 25 Sep 2006 20:45:56 +0200
| Newsgroups | gmane.linux.cluster.openmosix.devel |
|---|---|
| Message-ID | <[email protected]> |
This serie of 6 patches is only a 'fix warning', code that cause warning like 'defined but not used' is commented out for now ... We'll know soon what to do with it. Florian Delizy ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ openMosix-devel mailing list openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/openmosix-devel
openmosix-depuuty-fix-warning.patch
(text/x-patch, 744 B)
Index: linux/hpc/deputy.c
===================================================================
--- linux.orig/hpc/deputy.c 2006-09-25 20:37:36.000000000 +0200
+++ linux/hpc/deputy.c 2006-09-25 20:37:39.000000000 +0200
@@ -86,6 +86,8 @@
/**
* deputy_do_fork - process a fork coming from remote
**/
+
+#if 0
static int deputy_do_fork(task_t *p)
{
int error;
@@ -159,6 +161,7 @@
}
return error;
}
+#endif
/**
* deputy_do_mmap_pgoff - really do a mmap on deputy
@@ -202,6 +205,7 @@
/**
* deputy_do_mmap - process request to mmap a file
**/
+#if 0
static int deputy_do_mmap(task_t *p)
{
struct omp_mmap_req m;
@@ -391,6 +395,8 @@
return error;
}
+#endif
+
/**
* deputy_do_sigpending - process signal pending
**/