[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-992?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13000945#comment-13000945
 ] 

Dheeraj Agrawal commented on ZOOKEEPER-992:
-------------------------------------------

Main change in zookeeper.jute.c is around the use of gnu ternary operator 
(http://en.wikipedia.org/wiki/Operator%3F:#C). The usage rc = rc ? : 
out->end_record(out, tag); is not compatible in Windows so that changes in 
zookeeper.jute.c are around making them compatible.
rc = rc ? rc  : out->end_record(out, tag);

> MT Native Version of Windows C Client 
> --------------------------------------
>
>                 Key: ZOOKEEPER-992
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-992
>             Project: ZooKeeper
>          Issue Type: New Feature
>          Components: c client
>         Environment: Windows 32
>            Reporter: Camille Fournier
>            Assignee: Dheeraj Agrawal
>             Fix For: 3.4.0
>
>         Attachments: win32_patch.txt
>
>
> This is an extention of the work in  
> https://issues.apache.org/jira/browse/ZOOKEEPER-859

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to