You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/10/10 15:54:32 UTC

svn commit: r823856 - in /commons/sandbox/runtime/trunk/src/main/native: Makefile.in Makefile.msc.in os/darwin/cpu.c os/hpux/cpu.c os/linux/cpu.c os/solaris/cpu.c os/win32/cpu.c

Author: mturk
Date: Sat Oct 10 13:54:31 2009
New Revision: 823856

URL: http://svn.apache.org/viewvc?rev=823856&view=rev
Log:
Add cpu info stub files

Added:
    commons/sandbox/runtime/trunk/src/main/native/os/darwin/cpu.c   (with props)
    commons/sandbox/runtime/trunk/src/main/native/os/hpux/cpu.c   (with props)
    commons/sandbox/runtime/trunk/src/main/native/os/linux/cpu.c   (with props)
    commons/sandbox/runtime/trunk/src/main/native/os/solaris/cpu.c   (with props)
    commons/sandbox/runtime/trunk/src/main/native/os/win32/cpu.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=823856&r1=823855&r2=823856&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/Makefile.in (original)
+++ commons/sandbox/runtime/trunk/src/main/native/Makefile.in Sat Oct 10 13:54:31 2009
@@ -140,6 +140,7 @@
 	$(SRCDIR)/os/unix/time.$(OBJ) \
 	$(SRCDIR)/os/unix/uuid.$(OBJ) \
 	$(SRCDIR)/os/unix/uutils.$(OBJ) \
+	$(SRCDIR)/os/linux/cpu.$(OBJ) \
 	$(SRCDIR)/os/linux/env.$(OBJ) \
 	$(SRCDIR)/os/linux/execmem.$(OBJ) \
 	$(SRCDIR)/os/linux/module.$(OBJ) \
@@ -174,6 +175,7 @@
 	$(SRCDIR)/os/unix/time.$(OBJ) \
 	$(SRCDIR)/os/unix/uuid.$(OBJ) \
 	$(SRCDIR)/os/unix/uutils.$(OBJ) \
+	$(SRCDIR)/os/solaris/cpu.$(OBJ) \
 	$(SRCDIR)/os/solaris/env.$(OBJ) \
 	$(SRCDIR)/os/solaris/module.$(OBJ) \
 	$(SRCDIR)/os/solaris/platform.$(OBJ) \
@@ -205,6 +207,7 @@
 	$(SRCDIR)/os/unix/time.$(OBJ) \
 	$(SRCDIR)/os/unix/uuid.$(OBJ) \
 	$(SRCDIR)/os/unix/uutils.$(OBJ) \
+	$(SRCDIR)/os/darwin/cpu.$(OBJ) \
 	$(SRCDIR)/os/darwin/env.$(OBJ) \
 	$(SRCDIR)/os/darwin/platform.$(OBJ) \
 	$(SRCDIR)/os/darwin/module.$(OBJ) \
@@ -237,6 +240,7 @@
 	$(SRCDIR)/os/unix/time.$(OBJ) \
 	$(SRCDIR)/os/unix/uuid.$(OBJ) \
 	$(SRCDIR)/os/unix/uutils.$(OBJ) \
+	$(SRCDIR)/os/hpux/cpu.$(OBJ) \
 	$(SRCDIR)/os/hpux/env.$(OBJ) \
 	$(SRCDIR)/os/hpux/group.$(OBJ) \
 	$(SRCDIR)/os/hpux/module.$(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=823856&r1=823855&r2=823856&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in (original)
+++ commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in Sat Oct 10 13:54:31 2009
@@ -106,6 +106,7 @@
 	$(SRCDIR)/shared/version.$(OBJ)
 
 WINDOWS_OBJS= \
+	$(SRCDIR)/os/win32/cpu.$(OBJ) \
 	$(SRCDIR)/os/win32/dhtml.$(OBJ) \
 	$(SRCDIR)/os/win32/dir.$(OBJ) \
 	$(SRCDIR)/os/win32/dirent.$(OBJ) \

Added: commons/sandbox/runtime/trunk/src/main/native/os/darwin/cpu.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/darwin/cpu.c?rev=823856&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/darwin/cpu.c (added)
+++ commons/sandbox/runtime/trunk/src/main/native/os/darwin/cpu.c Sat Oct 10 13:54:31 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 CPU info functions
+ *
+ */

Propchange: commons/sandbox/runtime/trunk/src/main/native/os/darwin/cpu.c
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/runtime/trunk/src/main/native/os/hpux/cpu.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/hpux/cpu.c?rev=823856&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/hpux/cpu.c (added)
+++ commons/sandbox/runtime/trunk/src/main/native/os/hpux/cpu.c Sat Oct 10 13:54:31 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 CPU info functions
+ *
+ */

Propchange: commons/sandbox/runtime/trunk/src/main/native/os/hpux/cpu.c
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/runtime/trunk/src/main/native/os/linux/cpu.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/linux/cpu.c?rev=823856&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/linux/cpu.c (added)
+++ commons/sandbox/runtime/trunk/src/main/native/os/linux/cpu.c Sat Oct 10 13:54:31 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 CPU info functions
+ *
+ */

Propchange: commons/sandbox/runtime/trunk/src/main/native/os/linux/cpu.c
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/runtime/trunk/src/main/native/os/solaris/cpu.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/solaris/cpu.c?rev=823856&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/solaris/cpu.c (added)
+++ commons/sandbox/runtime/trunk/src/main/native/os/solaris/cpu.c Sat Oct 10 13:54:31 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 CPU info functions
+ *
+ */

Propchange: commons/sandbox/runtime/trunk/src/main/native/os/solaris/cpu.c
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/runtime/trunk/src/main/native/os/win32/cpu.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/cpu.c?rev=823856&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/cpu.c (added)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/cpu.c Sat Oct 10 13:54:31 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 CPU info functions
+ *
+ */

Propchange: commons/sandbox/runtime/trunk/src/main/native/os/win32/cpu.c
------------------------------------------------------------------------------
    svn:eol-style = native