You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modules-dev@httpd.apache.org by "Koperek, Michael" <Mi...@ebootis.de> on 2015/04/22 08:26:37 UTC

mod_fcgid: WIN32 compile-error and problem with slepp for 1 second

Hi,
using the current mod_fcgid 2.3.9 sources, im not able to compile on windows using msdev 6.0:

Compiling...
fcgid_conf.c
…\fcgid_conf.c(815) : error C2065: 'JOBOBJECT_EXTENDED_LIMIT_INFORMATION' : undeclared identifier
…\fcgid_conf.c(815) : error C2146: syntax error : missing ';' before identifier 'job_info'
…\fcgid_conf.c(815) : error C2065: 'job_info' : undeclared identifier
…\fcgid_conf.c(815) : error C2059: syntax error : '{'
…\fcgid_conf.c(827) : error C2224: left of '.BasicLimitInformation' must have struct/union type
…\fcgid_conf.c(828) : error C2065: 'JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE' : undeclared identifier
…\fcgid_conf.c(830) : error C2065: 'JobObjectExtendedLimitInformation' : undeclared identifier

Seems to be not compilable code. Any ideas what to do?


There is a sleep for 1 second in fcgid_bridge.c, function handle_request.
One second is for my application to high (user has to wait for each image to load on a web side with multiple images 1 second).
I changed the code from
   apr_sleep(apr_time_from_sec(1));
to
  apr_sleep(APR_USEC_PER_SEC / 50); // 20 msecs

That works fine.
Is it possible to configure the sleep time?

Kind regards

Michael Koperek
e.bootis ag


________________________________________

e.bootis ag
Aktiengesellschaft mit Sitz in Essen
Amtsgericht Essen HRB 21782
Vorstand: Dr. Karl Langenstein, Ludger Langenstein, Tim Langenstein
Aufsichtsratsvorsitzender: Prof. Dr. Martin Užik

Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.


Re: mod_fcgid: WIN32 compile-error and problem with slepp for 1 second

Posted by Jeff Trawick <tr...@gmail.com>.
Hello Michael,

This is a mailing list for developers of plug-in modules for httpd.  
users@httpd.apache.org and dev@httpd.apache.org are better choices.  (I 
guess these two topics are code-related so dev@ is the best choice.)  
But see below.  (If further discussion is needed outside of the bug db, 
please post to dev@httpd.apache.org.)


On 04/22/2015 02:26 AM, Koperek, Michael wrote:
> Hi,
> using the current mod_fcgid 2.3.9 sources, im not able to compile on windows using msdev 6.0:
>
> Compiling...
> fcgid_conf.c
> …\fcgid_conf.c(815) : error C2065: 'JOBOBJECT_EXTENDED_LIMIT_INFORMATION' : undeclared identifier
> …\fcgid_conf.c(815) : error C2146: syntax error : missing ';' before identifier 'job_info'
> …\fcgid_conf.c(815) : error C2065: 'job_info' : undeclared identifier
> …\fcgid_conf.c(815) : error C2059: syntax error : '{'
> …\fcgid_conf.c(827) : error C2224: left of '.BasicLimitInformation' must have struct/union type
> …\fcgid_conf.c(828) : error C2065: 'JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE' : undeclared identifier
> …\fcgid_conf.c(830) : error C2065: 'JobObjectExtendedLimitInformation' : undeclared identifier
>
> Seems to be not compilable code. Any ideas what to do?

You need a newer SDK from Microsoft that defines that API.  (Maybe a web 
search will help?)  It would be fair to open a bug against mod_fcgid 
asking for some compatibility with ancient SDK bundled with your 
compiler, but I'm not sure anyone would be able to work on that.

>
>
> There is a sleep for 1 second in fcgid_bridge.c, function handle_request.
> One second is for my application to high (user has to wait for each image to load on a web side with multiple images 1 second).
> I changed the code from
>     apr_sleep(apr_time_from_sec(1));
> to
>    apr_sleep(APR_USEC_PER_SEC / 50); // 20 msecs
>
> That works fine.
> Is it possible to configure the sleep time?

Please comment on this bug to raise awareness that it affects more people:

https://bz.apache.org/bugzilla/show_bug.cgi?id=56308

>
> Kind regards
>
> Michael Koperek
> e.bootis ag
>
>
> ________________________________________
>
> e.bootis ag
> Aktiengesellschaft mit Sitz in Essen
> Amtsgericht Essen HRB 21782
> Vorstand: Dr. Karl Langenstein, Ludger Langenstein, Tim Langenstein
> Aufsichtsratsvorsitzender: Prof. Dr. Martin Užik
>
> Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.
> This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.
>