summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2001-08-31 15:54:51 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2001-08-31 15:54:51 +0000
commit075e273780d61d1be2cffb586de4a394f97dfd0f (patch)
tree133ee697062e45aba31edcd11bfa7dd83d5fd9fe
parent0018042a1ee8a3906e5e7e6bff57e4418747190d (diff)
downloadxine-lib-075e273780d61d1be2cffb586de4a394f97dfd0f.tar.gz
xine-lib-075e273780d61d1be2cffb586de4a394f97dfd0f.tar.bz2
document another solaris shm kernel parameter that needs to be tuned to
use mit-shm with xine. add a hint to the /usr/lib/lwp "alternate" thread library implementation available on solaris 8. CVS patchset: 533 CVS date: 2001/08/31 15:54:51
-rw-r--r--doc/README.solaris27
1 files changed, 20 insertions, 7 deletions
diff --git a/doc/README.solaris b/doc/README.solaris
index b177bc3f9..e49d1401a 100644
--- a/doc/README.solaris
+++ b/doc/README.solaris
@@ -7,9 +7,9 @@ building xine on solaris
referenced symbol not found" error when running xine, re-configure
xine-lib with gcc as the linker command (env LD=gcc configure ...)
-* To get VIS accelerated MPEG decoding and colour space conversion
- on Solaris SPARC, download and install Sun's mediaLib 2.0, available
- here:
+* To get VIS accelerated video decoding and colour space conversion
+ on Solaris SPARC with an UltraSPARC cpu, download and install Sun's
+ mediaLib 2.0, available here:
http://www.sun.com/sparc/vis/mediaLib.html
@@ -20,11 +20,24 @@ Known Problems
* Can't use MIT shared memory for local video display
The default value for the maximum allowed shared memory segment size
- (1MByte) is very small on solaris. You may want to increase the
- max. allowed shared memory segment size. Add the following line to
- /etc/system to increase the shmmax parameter to 8MBytes:
+ (1MByte) and the number of allowed shared memory segments (6)
+ is very small on solaris. You may want to increase both parameters.
+ Add the following lines to /etc/system to increase the shmmax parameter
+ to 8MBytes and the shmseg parameter to 32:
set shmsys:shminfo_shmmax=8388608
+ set shmsys:shminfo_shmseg=32
Reboot the machine after modifying /etc/system to activate the new
- default.
+ shared memory defaults.
+
+* No Video, or video stops after a few frames
+
+ If you're on Solaris 8, try to use XINE with the "alternate libthread
+ implementation". The alternate thread implementation can be selected
+ at runtime by adding /usr/lib/lwp into the LD_LIBRARY_PATH environment
+ variable:
+
+ LD_LIBRARY_PATH=/usr/lib/lwp
+
+ See also the threads(3THR) man page, "ALTERNATE IMPLEMENTATION"