Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/fhandler_process.cc')
-rw-r--r--winsup/cygwin/fhandler_process.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/fhandler_process.cc b/winsup/cygwin/fhandler_process.cc
index 2ba1e5326..716a20f00 100644
--- a/winsup/cygwin/fhandler_process.cc
+++ b/winsup/cygwin/fhandler_process.cc
@@ -15,9 +15,9 @@ details. */
#include <ntdef.h>
#include "cygerrno.h"
#include "security.h"
+#include "path.h"
#include "fhandler.h"
#include "pinfo.h"
-#include "path.h"
#include "shared_info.h"
#include "dtable.h"
#include "cygheap.h"
@@ -96,16 +96,16 @@ fhandler_process::exists ()
}
fhandler_process::fhandler_process ():
- fhandler_proc (FH_PROCESS)
+ fhandler_proc ()
{
}
int
-fhandler_process::fstat (struct __stat64 *buf, path_conv *pc)
+fhandler_process::fstat (struct __stat64 *buf)
{
const char *path = get_name ();
int file_type = exists ();
- (void) fhandler_base::fstat (buf, pc);
+ (void) fhandler_base::fstat (buf);
path += proc_len + 1;
pid = atoi (path);
pinfo p (pid);
@@ -155,11 +155,11 @@ fhandler_process::readdir (DIR * dir)
}
int
-fhandler_process::open (path_conv *pc, int flags, mode_t mode)
+fhandler_process::open (int flags, mode_t mode)
{
int process_file_no = -1;
- int res = fhandler_virtual::open (pc, flags, mode);
+ int res = fhandler_virtual::open (flags, mode);
if (!res)
goto out;