From: Alfons Hoogervorst Date: Thu, 11 Oct 2001 17:48:13 +0000 (+0000) Subject: remove syldap.c's call to sched_yield() X-Git-Tag: Release_0_6_4claws12~56 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=7f9cb751f235144ccb55f686ebd3956b15a3acfe;ds=sidebyside remove syldap.c's call to sched_yield() --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 49ab49308..c5812486b 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,12 @@ +2001-10-11 [alfons] + + * README.claws + correct description of how to make new filtering system work, + add some other things + + * src/syldap.c + remove sched_yield() (not necessary / unportable) + 2001-10-11 [paul] 0.6.3claws8 * sync with sylpheed 0.6.3cvs3 diff --git a/README.claws b/README.claws index 57ebb1407..8b4c37c6b 100644 --- a/README.claws +++ b/README.claws @@ -36,9 +36,11 @@ There are some things that frequently come up when switching to Claws: * Why does the advanced filtering system not work? - Claws will only use the new filtering system when you cleared the Sylpheed - filter rules list. - + Claws uses the new filtering system as soon as you define a new rule for it. + Your old sylpheed filter rules will not be used. In subdirectory tools/ of + the distribution there is a Perl script called filter_conv.pl which convers + old filter rules to the claws filtering system. + * What happened to the compose email and compose news buttons? @@ -100,3 +102,28 @@ are hardly noticable, but deserve mentioning: There are a lot more options. If you find one, don't hesitate to mention it. + + +How to contribute +----------------- + +Write a patch, submit it to the Sylpheed ML, Sylpheed Claws Users ML, +or bother any of the current Claws developers. There's no way to +predict whether your patch will or will not end up in Claws or Main. +Mostly they will. And if not, there's probably nothing wrong with +your code - or maybe there is. Generally, adding a cool or useful +thing to your patch will attract a lot of attention of other users +or developers. + + +How to request features +----------------------- + +Ask around in both Sylpheed ML and Sylpheed Claws Users ML. Note +that some developers may already thought about your feature, may +perhaps be implementing it - or the feature was already discussed +and rejected for whatever reason. Don't complain, be patient. Or +you might want to go ahead and hack a patch for it. That would +be very cool! (c. How to contribute) + + diff --git a/src/syldap.c b/src/syldap.c index 3a86a1248..24359b8a3 100644 --- a/src/syldap.c +++ b/src/syldap.c @@ -647,7 +647,6 @@ gint syldap_read_data( SyldapServer *ldapServer ) { /* Callback */ ldapServer->busyFlag = FALSE; if( ldapServer->callBack ) { - sched_yield(); ( ldapServer->callBack )( ldapServer ); } ldapServer->thread = NULL;