I'm having the following issue related to pthread-win32 which implements
pthread_t as a structure.

/usr/src/libxslt-1.1.26/xsltproc/testThreads.c: In function 'main':
/usr/src/libxslt-1.1.26/xsltproc/testThreads.c:203:6: error: conversion
to non-scalar type requested
/usr/src/libxslt-1.1.26/xsltproc/testThreads.c:245:6: error: conversion
to non-scalar type requested

Both lines 203 and 245 do ``tid[i] = (pthread_t) -1;'' which doesn't
work with the structure.  What recommendations to resolve the issue does
anyone have?

<file name="/mingw/include/pthread.h>
<snippet>
typedef struct {
    void * p;                   /* Pointer to actual object */
    unsigned int x;             /* Extra information - reuse count etc */
} ptw32_handle_t;

typedef ptw32_handle_t pthread_t;
</snippet>
</file>

-- 
Earnie
-- https://sites.google.com/site/earnieboyd/
_______________________________________________
xml mailing list, project page  http://xmlsoft.org/
xml@gnome.org
http://mail.gnome.org/mailman/listinfo/xml

Reply via email to