Displaying 2 results from an estimated 2 matches for "queue_wrappers".
Did you mean:
queue_wrapper
2013 May 14
2
[LLVMdev] Queue implementation is being trapped
...meFPValue)(int channel)*
* {return (TYPE) Q->removeFPElement (channel);}*
*#endif*
*}*
In order to define a set of functions for a type, I can simply insert the
following lines on my original library:
*#define INT_TYPE*
*#define TYPE char*
*#define TYPED_NAME(x) i8_##x*
*#include "queue_wrappers.h"*
*#undef TYPE*
*#undef TYPED_NAME*
*#undef INT_TYPE*
And, for this example, the functions i8_produceValue, i8_consumeValue,
i8_producePtrValue and i8_consumePtrValue should be defined.
Well, the problem is that all those functions are being defined, indeed,
but every function inside th...
2013 May 14
0
[LLVMdev] Queue implementation is being trapped
...el);}*
>
> *#endif*
>
> *}*
>
>
> In order to define a set of functions for a type, I can simply insert the
> following lines on my original library:
>
> *#define INT_TYPE*
>
> *#define TYPE char*
>
> *#define TYPED_NAME(x) i8_##x*
>
> *#include "queue_wrappers.h"*
>
> *#undef TYPE*
>
> *#undef TYPED_NAME*
>
> *#undef INT_TYPE*
>
> And, for this example, the functions i8_produceValue, i8_consumeValue,
> i8_producePtrValue and i8_consumePtrValue should be defined.
>
> Well, the problem is that all those functions are b...