search for: source_tree

Displaying 9 results from an estimated 9 matches for "source_tree".

2016 Oct 02
2
Icecast 2.4.3, minor bug
source.c, function source_reserve() : Function avl_tree_wlock(global.source_tree) call must be placed before do-while, not inside the cycle. My correction in block _DIGI: #define _DIGI ... if(mount[0] != '/') ICECAST_LOG_WARN("Source at \"%s\" does not start with '/', clients will be " "unable to conne...
2004 Aug 06
2
fallback source give up and returns to original source
On Sat, 2004-01-17 at 19:31, iceuse@kezako.net wrote: > Thanks, > Karl, do you plan to integrate this in your icecast-kh release? The idea is to put the the changes I've done into CVS. That way you get the best of both worlds, there's nothing conflicting AFAIK. karl. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage:
2004 Aug 06
0
fallback source give up and returns to original source
...modified files (perhaps you want to integrate them in your release, but also I'm not sure about locking or not the main source before moving the clients : if(source->fallback_override && source->fallback_mount) { /* get fallback source */ avl_tree_rlock (global.source_tree); source_t *fallback_source = source_find_mount (source->fallback_mount); avl_tree_unlock (global.source_tree); if (fallback_source) { INFO2 ("passing %d listeners to %s", fallback_source->mount,source->listeners ); /* Do we need t...
2004 Aug 06
2
ICECAST enseirb group
...element can be done in a single operation. > > > > ---------------------------------------- > > > > We saw that the stat module worked with an avl in order to keep the global > > parameters ( _stats.global_tree ) and "per source" parameters ( > > _stats.source_tree ) : we don't understand the use of an avl for the global > > parameters. Can't we directly use fields in the _stats_t structure instead > > of an avl. It would be more efficient than searching the avl for a key and > > the asociated value. The values are saved as strings i...
2004 Aug 06
2
improved error.log output --diff
..."request (command: %s)", command_string); + "request (command: %s), %s", command_string, client->con->ip); client_send_401(client); return; } @@ -264,14 +264,14 @@ avl_tree_unlock(global.source_tree); if(source == NULL) { - WARN2("Admin command %s on non-existent source %s", - command_string, mount); + WARN2("Admin command %s on non-existent source %s, %s", + command_string, mount, client->con->i...
2017 Sep 16
1
--no-omit-dir-times does not override --backup
...negate the implied option by specifying it prefixed with "--no". The resulting option "--no-omit-dir-times" runs without any warnings or errors but does not transfer modification times on directories. Example rsync command: rsync --recursive --times --backup --no-omit-dir-times source_tree dest Expected result: rsync transfer modification times on directories. or Unknown option/syntax error message when executing the command. Is this expected behavior or am I doing something wrong? Thanks for your attention. -- Anders
2012 Jul 24
1
questions on R CMD INSTALL et al
...ng ** help *** installing help indices ** building package indices ** testing if installed package can be loaded * DONE (mgcv) make[2]: Leaving directory `/home/Rman/R-2.15.0/src/library/Recommended' make[1]: Leaving directory `/home/Rman/R-2.15.0/src/library/Recommended' -----here is the source_tree for mgcv ---A mgcv_SR_tree/mgcv/R mgcv_SR_tree/mgcv/data mgcv_SR_tree/mgcv/inst mgcv_SR_tree/mgcv/man mgcv_SR_tree/mgcv/po mgcv_SR_tree/mgcv/src mgcv_SR_tree/mgcv/DESCRIPTION mgcv_SR_tree/mgcv/MD5 mgcv_SR_tree/mgcv/NAMESPACE mgcv_SR_tree/mgcv/changeLog mgcv_SR_tree/mgcv/gnugpl2.txt mgcv_SR_tree/m...
2004 Aug 06
1
Patches - Was: Stream metadata settings
...9;t recall which. Since the > function must be called under lock, there should only be one thread az a > time executing it. > I wasn't 100% sure about this, that's why I added the comment, so someone > else would have a look. > Almost right. A lock has to be held (the global.source_tree lock), but that's an rwlock, which allows multiple simultaneous readers. I'll redo the code there. Mike --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-dev-reques...
2004 Aug 06
2
Patches - Was: Stream metadata settings
On Tuesday 02 December 2003 20:43, Melanie wrote: > Hi, > > I've split it into three patches now and also made it fit to current CVS, > with, I believe, Karl's changes for the double free bug. > > Order for the patches is: > > icecast-multilevel-fallback.patch > icecast-timewindow.patch > icecast-yp-override.patch > > As for docs: How? What format? Any