Changeset 51
- Timestamp:
- 07/02/08 10:21:54 (2 months ago)
- Files:
-
- trunk/debian/changelog (modified) (1 diff)
- trunk/debian/control (modified) (1 diff)
- trunk/libsipc.spec (modified) (3 diffs)
- trunk/libsipc/bindings/java/examples/MQ_Sender.java (modified) (1 diff)
- trunk/libsipc/bindings/java/examples/SHM_Creator.java (modified) (1 diff)
- trunk/libsipc/bindings/java/examples/SHM_Reader.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/debian/changelog
r42 r51 1 libsipc (1.2) unstable; urgency=low 2 3 * Added sipc_ioctl() function; rewrote Java SWIG bindings. 4 5 -- J. Tang <jtang@tresys.com> Tue, 01 Jul 2008 12:00:00 -0500 6 1 7 libsipc (1.1) unstable; urgency=low 2 8 trunk/debian/control
r31 r51 2 2 Priority: optional 3 3 Maintainer: J. Tang <jtang@tresys.com> 4 Build-Depends: cdbs, debhelper (>= 5), gcc, sun-java6-jdk 4 Build-Depends: cdbs, debhelper (>= 5), gcc, sun-java6-jdk, swig (>= 1.3.28) 5 5 Standards-Version: 3.7.2 6 6 Section: libs trunk/libsipc.spec
r43 r51 1 1 Name: libsipc 2 Version: 1. 12 Version: 1.2 3 3 License: GPLv2 4 4 BuildRoot: %{_tmppath}/libsipc-%{version} 5 Release: 15 Release: 0 6 6 Source: libsipc.tar.gz 7 7 Summary: Secure Inter-Process Library … … 23 23 Summary: Secure Inter-Process Library (Java bindings) 24 24 Group: Development/Languages 25 BuildRequires: swig >= 1.3.28 25 26 Requires: jre >= 1.5 libsipc = %{version}-%{release} 26 27 … … 96 97 97 98 %changelog 99 * Tue Jul 01 2008 Jason Tang <selinux@tresys.com> 1.2-0 100 - Added sipc_ioctl() function; rewrote Java SWIG bindings. 101 98 102 * Tue Jun 24 2008 Jason Tang <selinux@tresys.com> 1.1-1 99 103 - Set install library install location to %{_libdir}, for 64-bit systems. trunk/libsipc/bindings/java/examples/MQ_Sender.java
r50 r51 25 25 26 26 import java.nio.*; 27 import java.nio.charset.*;28 27 29 28 /** trunk/libsipc/bindings/java/examples/SHM_Creator.java
r50 r51 33 33 public static void main(String[] args) { 34 34 try { 35 Sipc sipc = new SipcShm(sipc_key, sipcwrapperConstants.SIPC_CREATOR, 819 6);35 Sipc sipc = new SipcShm(sipc_key, sipcwrapperConstants.SIPC_CREATOR, 8192); 36 36 sipc.Close(); 37 37 } catch (Exception e) { trunk/libsipc/bindings/java/examples/SHM_Reader.java
r50 r51 42 42 public static void main(String[] args) { 43 43 SipcShm shm = null; 44 int ipc_len = 819 6;44 int ipc_len = 8192; 45 45 46 46 /* Create and initialize the IPC handle */
