summaryrefslogtreecommitdiff
path: root/include/iprt/localipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/iprt/localipc.h')
-rw-r--r--include/iprt/localipc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/iprt/localipc.h b/include/iprt/localipc.h
index 0a887e42..37196626 100644
--- a/include/iprt/localipc.h
+++ b/include/iprt/localipc.h
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 2006-2007 Oracle Corporation
+ * Copyright (C) 2006-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
@@ -75,7 +75,7 @@ RTDECL(int) RTLocalIpcServerCreate(PRTLOCALIPCSERVER phServer, const char *pszNa
/** @name RTLocalIpcServerCreate flags
* @{ */
-/** The server can handle multiple session. */
+/** The server can handle multiple sessions. */
#define RTLOCALIPC_FLAGS_MULTI_SESSION RT_BIT_32(0)
/** The mask of valid flags. */
#define RTLOCALIPC_FLAGS_VALID_MASK UINT32_C(0x00000001)
@@ -150,7 +150,7 @@ RTDECL(int) RTLocalIpcSessionClose(RTLOCALIPCSESSION hSession);
* @param hSession The session handle.
* @param pvBuffer Where to store the data.
* @param cbBuffer If pcbRead is non-NULL this indicates the maximum number of
- * bytes to read. If pcbRead is NULL the this is the exact number
+ * bytes to read. If pcbRead is NULL then this is the exact number
* of bytes to read.
* @param pcbRead Optional argument for indicating a partial read and returning
* the number of bytes actually read.
@@ -188,7 +188,7 @@ RTDECL(int) RTLocalIpcSessionWrite(RTLOCALIPCSESSION hSession, const void *pvBuf
RTDECL(int) RTLocalIpcSessionFlush(RTLOCALIPCSESSION hSession);
/**
- * Wait for data to become read for reading or for the
+ * Wait for data to become ready for reading or for the
* session to be disconnected.
*
* @returns IPRT status code.