Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(651)

Unified Diff: util/test/multiprocess.h

Issue 853853002: win: Stub reorganization of MultiprocessExec (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: . Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « util/test/mac/mach_multiprocess.cc ('k') | util/test/multiprocess.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/test/multiprocess.h
diff --git a/util/test/multiprocess.h b/util/test/multiprocess.h
index c3a7949e4ceb447311ae4f6333480cf642fc5e61..2dbf6a359015a4dbca9dc8e12667c24b31a8c9ce 100644
--- a/util/test/multiprocess.h
+++ b/util/test/multiprocess.h
@@ -15,9 +15,10 @@
#ifndef CRASHPAD_UTIL_TEST_MULTIPROCESS_H_
#define CRASHPAD_UTIL_TEST_MULTIPROCESS_H_
-#include <unistd.h>
+#include <sys/types.h>
#include "base/basictypes.h"
+#include "util/file/file_io.h"
namespace crashpad {
namespace test {
@@ -108,40 +109,40 @@ class Multiprocess {
//! This method may only be called by the parent process.
pid_t ChildPID() const;
- //! \brief Returns the read pipe’s file descriptor.
+ //! \brief Returns the read pipe’s file handle.
//!
//! This method may be called by either the parent or the child process.
//! Anything written to the write pipe in the partner process will appear
- //! on the this file descriptor in this process.
+ //! on this file handle in this process.
//!
//! It is an error to call this after CloseReadPipe() has been called.
//!
- //! \return The read pipe’s file descriptor.
- int ReadPipeFD() const;
+ //! \return The read pipe’s file handle.
+ FileHandle ReadPipeHandle() const;
- //! \brief Returns the write pipe’s file descriptor.
+ //! \brief Returns the write pipe’s file handle.
//!
//! This method may be called by either the parent or the child process.
- //! Anything written to this file descriptor in this process will appear on
+ //! Anything written to this file handle in this process will appear on
//! the read pipe in the partner process.
//!
//! It is an error to call this after CloseWritePipe() has been called.
//!
- //! \return The write pipe’s file descriptor.
- int WritePipeFD() const;
+ //! \return The write pipe’s file handle.
+ FileHandle WritePipeHandle() const;
//! \brief Closes the read pipe.
//!
//! This method may be called by either the parent or the child process. An
//! attempt to write to the write pipe in the partner process will fail with
- //! `EPIPE` or `SIGPIPE`. ReadPipeFD() must not be called after this.
+ //! `EPIPE` or `SIGPIPE`. ReadPipeHandle() must not be called after this.
void CloseReadPipe();
//! \brief Closes the write pipe.
//!
//! This method may be called by either the parent or the child process. An
//! attempt to read from the read pipe in the partner process will indicate
- //! end-of-file. WritePipeFD() must not be called after this.
+ //! end-of-file. WritePipeHandle() must not be called after this.
void CloseWritePipe();
private:
« no previous file with comments | « util/test/mac/mach_multiprocess.cc ('k') | util/test/multiprocess.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698