mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 08:12:05 +00:00
Making nsIThread nsIRunnable and nsIThreadPool idl interfaces.
This commit is contained in:
parent
2b35be101c
commit
994f05a34e
@ -362,6 +362,7 @@ sub BuildClientDist()
|
||||
_InstallFromManifest(":mozilla:xpcom:base:MANIFEST_IDL", "$distdirectory:idl:");
|
||||
_InstallFromManifest(":mozilla:xpcom:io:MANIFEST_IDL", "$distdirectory:idl:");
|
||||
_InstallFromManifest(":mozilla:xpcom:ds:MANIFEST_IDL", "$distdirectory:idl:");
|
||||
_InstallFromManifest(":mozilla:xpcom:threads:MANIFEST_IDL", "$distdirectory:idl:");
|
||||
_InstallFromManifest(":mozilla:xpcom:components:MANIFEST_IDL", "$distdirectory:idl:");
|
||||
|
||||
_InstallFromManifest(":mozilla:xpcom:base:MANIFEST", "$distdirectory:xpcom:");
|
||||
|
@ -29,6 +29,7 @@
|
||||
#define STREAM_CONVERTER_HACK
|
||||
|
||||
#include "nsIFileChannel.h"
|
||||
#include "nsIRunnable.h"
|
||||
#include "nsIThread.h"
|
||||
#include "nsFileSpec.h"
|
||||
#include "prlock.h"
|
||||
|
@ -1,6 +1,3 @@
|
||||
nsAutoLock.h
|
||||
nsIEventQueue.h
|
||||
nsIEventQueueService.h
|
||||
nsIThread.h
|
||||
nsIRunnable.h
|
||||
nsIThreadPool.h
|
||||
|
3
xpcom/threads/MANIFEST_IDL
Normal file
3
xpcom/threads/MANIFEST_IDL
Normal file
@ -0,0 +1,3 @@
|
||||
nsIRunnable.idl
|
||||
nsIThread.idl
|
||||
nsIThreadPool.idl
|
@ -28,7 +28,10 @@ LIBRARY_NAME = xpcomthreads_s
|
||||
|
||||
MODULE = xpcom
|
||||
|
||||
XPIDLSRCS = \
|
||||
XPIDLSRCS = \
|
||||
nsIThread.idl \
|
||||
nsIThreadPool.idl \
|
||||
nsIRunnable.idl \
|
||||
$(NULL)
|
||||
|
||||
CPPSRCS = \
|
||||
@ -42,9 +45,6 @@ EXPORTS = \
|
||||
nsAutoLock.h \
|
||||
nsIEventQueue.h \
|
||||
nsIEventQueueService.h \
|
||||
nsIThread.h \
|
||||
nsIThreadPool.h \
|
||||
nsIRunnable.h \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
||||
|
@ -27,12 +27,15 @@ EXPORTS = \
|
||||
nsAutoLock.h \
|
||||
nsIEventQueue.h \
|
||||
nsIEventQueueService.h \
|
||||
nsIThread.h \
|
||||
nsIThreadPool.h \
|
||||
nsIRunnable.h \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
NO_XPT_GEN=1
|
||||
XPIDL_MODULE = xpcom_thread
|
||||
|
||||
XPIDLSRCS = \
|
||||
.\nsIThread.idl \
|
||||
.\nsIThreadPool.idl \
|
||||
.\nsIRunnable.idl \
|
||||
$(NULL)
|
||||
|
||||
################################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user