You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Dean Gaudet <dg...@arctic.org> on 1998/03/08 05:19:26 UTC

AIX bindprocessor thing

The code reads:

        int status = bindprocessor(BINDPROCESS, (int)getpid(),
                                   PROCESSOR_CLASS_ANY);
        if (status != OK) {

But OK is a httpd.h #define, and not a system define.  I think this should
probably be status != 0. 

Dean


Re: AIX bindprocessor thing

Posted by Doug MacEachern <do...@telebusiness.co.nz>.
Dean Gaudet wrote:

> The code reads:
>
>         int status = bindprocessor(BINDPROCESS, (int)getpid(),
>                                    PROCESSOR_CLASS_ANY);
>         if (status != OK) {
>
> But OK is a httpd.h #define, and not a system define.  I think this should
> probably be status != 0.

Sure thing.

-Doug