[ 
https://issues.apache.org/jira/browse/CELIX-33?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Melissant closed CELIX-33.
-----------------------------------


Verified, works ok
                
> Framework uses fmaxl, function not supported by some (ARM) compilers
> --------------------------------------------------------------------
>
>                 Key: CELIX-33
>                 URL: https://issues.apache.org/jira/browse/CELIX-33
>             Project: Celix
>          Issue Type: Bug
>         Environment: Linux Ubuntu 64bit
>            Reporter: Jonathan Melissant
>            Assignee: Alexander Broekhuis
>            Priority: Minor
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> The celix framework uses the function fmaxl. Since this is not supported in
> ucLibc 9.33 (which has been reported to uclibc as a bug), I noticed that
> the function was used to compare 2 longs (instead of 2 doubles), and
> therefore can be replaced by the following:
> // framework->nextBundleId = fmaxl(framework->nextBundleId,  id + 1); // 
> original
> // FIXME: 20120405 CHANGED TO REMOVE UNDEFINED fmaxl problem. Check later if 
> this "fix" is acceptable
>            framework->nextBundleId = (framework->nextBundleId) > (id+1) ? 
> (framework->nextBundleId) : (id+1);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to