PATH: //opt/cpanel/ea-libxml2/include/libxml2/libxml
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 HTMLparser.h
↓
X
📄 HTMLtree.h
↓
X
📄 SAX.h
↓
X
📄 SAX2.h
↓
X
📄 c14n.h
↓
X
📄 catalog.h
↓
X
📄 chvalid.h
↓
X
📄 debugXML.h
↓
X
📄 dict.h
↓
X
📄 encoding.h
↓
X
📄 entities.h
↓
X
📄 globals.h
↓
X
📄 hash.h
↓
X
📄 list.h
↓
X
📄 nanoftp.h
↓
X
📄 nanohttp.h
↓
X
📄 parser.h
↓
X
📄 parserInternals.h
↓
X
📄 pattern.h
↓
X
📄 relaxng.h
↓
X
📄 schemasInternals.h
↓
X
📄 schematron.h
↓
X
📄 threads.h
↓
X
📄 tree.h
↓
X
📄 uri.h
↓
X
📄 valid.h
↓
X
📄 xinclude.h
↓
X
📄 xlink.h
↓
X
📄 xmlIO.h
↓
X
📄 xmlautomata.h
↓
X
📄 xmlerror.h
↓
X
📄 xmlexports.h
↓
X
📄 xmlmemory.h
↓
X
📄 xmlmodule.h
↓
X
📄 xmlreader.h
↓
X
📄 xmlregexp.h
↓
X
📄 xmlsave.h
↓
X
📄 xmlschemas.h
↓
X
📄 xmlschemastypes.h
↓
X
📄 xmlstring.h
↓
X
📄 xmlunicode.h
↓
X
📄 xmlversion.h
↓
X
📄 xmlwriter.h
↓
X
📄 xpath.h
↓
X
📄 xpathInternals.h
↓
X
📄 xpointer.h
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: threads.h
/** * @file * * @brief interfaces for thread handling * * set of generic threading related routines * should work with pthreads, Windows native or TLS threads * * @copyright See Copyright for the status of this software. * * @author Daniel Veillard */ #ifndef __XML_THREADS_H__ #define __XML_THREADS_H__ #include <libxml/xmlversion.h> #ifdef __cplusplus extern "C" { #endif /** Mutual exclusion object */ typedef struct _xmlMutex xmlMutex; typedef xmlMutex *xmlMutexPtr; /** Reentrant mutual exclusion object */ typedef struct _xmlRMutex xmlRMutex; typedef xmlRMutex *xmlRMutexPtr; XMLPUBFUN int xmlCheckThreadLocalStorage(void); XMLPUBFUN xmlMutex * xmlNewMutex (void); XMLPUBFUN void xmlMutexLock (xmlMutex *tok); XMLPUBFUN void xmlMutexUnlock (xmlMutex *tok); XMLPUBFUN void xmlFreeMutex (xmlMutex *tok); XMLPUBFUN xmlRMutex * xmlNewRMutex (void); XMLPUBFUN void xmlRMutexLock (xmlRMutex *tok); XMLPUBFUN void xmlRMutexUnlock (xmlRMutex *tok); XMLPUBFUN void xmlFreeRMutex (xmlRMutex *tok); /* * Library wide APIs. */ XML_DEPRECATED XMLPUBFUN void xmlInitThreads (void); XMLPUBFUN void xmlLockLibrary (void); XMLPUBFUN void xmlUnlockLibrary(void); XML_DEPRECATED XMLPUBFUN void xmlCleanupThreads(void); /** @cond IGNORE */ #if defined(LIBXML_THREAD_ENABLED) && defined(_WIN32) && \ defined(LIBXML_STATIC_FOR_DLL) int xmlDllMain(void *hinstDLL, unsigned long fdwReason, void *lpvReserved); #endif /** @endcond */ #ifdef __cplusplus } #endif #endif /* __XML_THREADS_H__ */
SIMPAN PERUBAHAN