Kaydet (Commit) df451d6a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

pipe.c -> pipe.cxx

Change-Id: I0c9659379e6120c0bf01b6436d3127b83ad01af1
üst b64c90c1
......@@ -9,7 +9,6 @@
#include <staticsalhack.h>
#include <sal/osl/unx/pipe.c>
#include <sal/osl/unx/readwrite_helper.c>
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -30,6 +30,7 @@
#include <sal/osl/unx/module.cxx>
#include <sal/osl/unx/mutex.cxx>
#include <sal/osl/unx/nlsupport.cxx>
#include <sal/osl/unx/pipe.cxx>
#include <sal/osl/unx/process.cxx>
#include <sal/osl/unx/process_impl.cxx>
#include <sal/osl/unx/profile.cxx>
......
......@@ -163,6 +163,7 @@ $(eval $(call gb_Library_add_exception_objects,sal,\
sal/osl/unx/module \
sal/osl/unx/mutex \
sal/osl/unx/nlsupport \
sal/osl/unx/pipe \
sal/osl/unx/process \
sal/osl/unx/process_impl \
sal/osl/unx/profile \
......@@ -172,7 +173,6 @@ $(eval $(call gb_Library_add_exception_objects,sal,\
$(if $(filter DESKTOP,$(BUILD_TYPE)), sal/osl/unx/salinit) \
))
$(eval $(call gb_Library_add_cobjects,sal,\
sal/osl/unx/pipe \
sal/osl/unx/readwrite_helper \
sal/osl/unx/socket \
sal/osl/unx/system \
......
......@@ -137,10 +137,10 @@ oslPipe SAL_CALL osl_createPipe(rtl_uString *ustrPipeName, oslPipeOptions Option
}
static sal_Bool
static bool
cpyBootstrapSocketPath(sal_Char *name, size_t len)
{
sal_Bool bRet = sal_False;
bool bRet = false;
rtl_uString *pName = 0, *pValue = 0;
rtl_uString_newFromAscii(&pName, "OSL_SOCKET_PATH");
......@@ -180,7 +180,7 @@ oslPipe SAL_CALL osl_psz_createPipe(const sal_Char *pszPipeName, oslPipeOptions
sal_Char name[PATH_MAX + 1];
size_t nNameLength = 0;
int bNameTooLong = 0;
bool bNameTooLong = false;
oslPipe pPipe;
if (access(PIPEDEFAULTPATH, R_OK|W_OK) == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment