Author: mturk Date: Mon Dec 14 07:43:58 2009 New Revision: 890207 URL: http://svn.apache.org/viewvc?rev=890207&view=rev Log: Add exec.c to the build
Added: commons/sandbox/runtime/trunk/src/main/native/os/unix/exec.c (with props) commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c (with props) Modified: commons/sandbox/runtime/trunk/src/main/native/Makefile.in commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in Modified: commons/sandbox/runtime/trunk/src/main/native/Makefile.in URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/Makefile.in?rev=890207&r1=890206&r2=890207&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/Makefile.in (original) +++ commons/sandbox/runtime/trunk/src/main/native/Makefile.in Mon Dec 14 07:43:58 2009 @@ -127,6 +127,7 @@ LINUX_OBJS= \ $(SRCDIR)/os/unix/dir.$(OBJ) \ $(SRCDIR)/os/unix/dso.$(OBJ) \ + $(SRCDIR)/os/unix/exec.$(OBJ) \ $(SRCDIR)/os/unix/file.$(OBJ) \ $(SRCDIR)/os/unix/finfo.$(OBJ) \ $(SRCDIR)/os/unix/fsysio.$(OBJ) \ @@ -167,6 +168,7 @@ SOLARIS_OBJS= \ $(SRCDIR)/os/unix/dir.$(OBJ) \ $(SRCDIR)/os/unix/dso.$(OBJ) \ + $(SRCDIR)/os/unix/exec.$(OBJ) \ $(SRCDIR)/os/unix/execmem.$(OBJ) \ $(SRCDIR)/os/unix/file.$(OBJ) \ $(SRCDIR)/os/unix/finfo.$(OBJ) \ @@ -205,6 +207,7 @@ DARWIN_OBJS= \ $(SRCDIR)/os/unix/dir.$(OBJ) \ $(SRCDIR)/os/unix/dso.$(OBJ) \ + $(SRCDIR)/os/unix/exec.$(OBJ) \ $(SRCDIR)/os/unix/execmem.$(OBJ) \ $(SRCDIR)/os/unix/file.$(OBJ) \ $(SRCDIR)/os/unix/finfo.$(OBJ) \ @@ -244,6 +247,7 @@ HPUX_OBJS= \ $(SRCDIR)/os/unix/dir.$(OBJ) \ $(SRCDIR)/os/unix/dso.$(OBJ) \ + $(SRCDIR)/os/unix/exec.$(OBJ) \ $(SRCDIR)/os/unix/execmem.$(OBJ) \ $(SRCDIR)/os/unix/file.$(OBJ) \ $(SRCDIR)/os/unix/finfo.$(OBJ) \ Modified: commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in?rev=890207&r1=890206&r2=890207&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in (original) +++ commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in Mon Dec 14 07:43:58 2009 @@ -118,6 +118,7 @@ $(SRCDIR)/os/win32/dirent.$(OBJ) \ $(SRCDIR)/os/win32/dso.$(OBJ) \ $(SRCDIR)/os/win32/env.$(OBJ) \ + $(SRCDIR)/os/win32/exec.$(OBJ) \ $(SRCDIR)/os/win32/execmem.$(OBJ) \ $(SRCDIR)/os/win32/fasync.$(OBJ) \ $(SRCDIR)/os/win32/file.$(OBJ) \ Added: commons/sandbox/runtime/trunk/src/main/native/os/unix/exec.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/unix/exec.c?rev=890207&view=auto ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/os/unix/exec.c (added) +++ commons/sandbox/runtime/trunk/src/main/native/os/unix/exec.c Mon Dec 14 07:43:58 2009 @@ -0,0 +1,30 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "acr.h" +#include "acr_private.h" +#include "acr_arch.h" +#include "acr_port.h" +#include "acr_error.h" +#include "acr_string.h" +#include "acr_descriptor.h" +#include "acr_file.h" +#include "acr_port.h" + +/** + * Posix process execution functions + * + */ Propchange: commons/sandbox/runtime/trunk/src/main/native/os/unix/exec.c ------------------------------------------------------------------------------ svn:eol-style = native Added: commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c?rev=890207&view=auto ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c (added) +++ commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c Mon Dec 14 07:43:58 2009 @@ -0,0 +1,30 @@ +/* Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "acr.h" +#include "acr_private.h" +#include "acr_arch.h" +#include "acr_port.h" +#include "acr_error.h" +#include "acr_string.h" +#include "acr_descriptor.h" +#include "acr_file.h" +#include "acr_port.h" + +/** + * Windows process execution functions + * + */ Propchange: commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c ------------------------------------------------------------------------------ svn:eol-style = native