moved mux.c to sys from cmn

This commit is contained in:
2015-10-02 06:10:55 +00:00
parent 850ae4d83b
commit 768c2eb0c5
22 changed files with 168 additions and 117 deletions

View File

@ -23,7 +23,6 @@ pkginclude_HEADERS = \
mb8.h \
mbwc.h \
mem.h \
mux.h \
nwad.h \
nwif.h \
nwio.h \

View File

@ -124,9 +124,9 @@ am__can_run_installinfo = \
esac
am__pkginclude_HEADERS_DIST = alg.h chr.h cp949.h cp950.h dir.h dll.h \
env.h fio.h fma.h fmt.h fs.h gdl.h glob.h htb.h hton.h ipad.h \
lda.h main.h map.h mb8.h mbwc.h mem.h mux.h nwad.h nwif.h \
nwio.h oht.h opt.h path.h pio.h pma.h rbt.h rex.h sck.h sio.h \
sll.h slmb.h str.h task.h time.h tio.h tmr.h tre.h uni.h uri.h \
lda.h main.h map.h mb8.h mbwc.h mem.h nwad.h nwif.h nwio.h \
oht.h opt.h path.h pio.h pma.h rbt.h rex.h sck.h sio.h sll.h \
slmb.h str.h task.h time.h tio.h tmr.h tre.h uni.h uri.h \
utf8.h xma.h Mmgr.hpp StdMmgr.hpp HeapMmgr.hpp Mmged.hpp \
ScopedPtr.hpp SharedPtr.hpp StrBase.hpp String.hpp Mpool.hpp \
Association.hpp LinkedList.hpp HashList.hpp HashTable.hpp \
@ -358,10 +358,10 @@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
pkginclude_HEADERS = alg.h chr.h cp949.h cp950.h dir.h dll.h env.h \
fio.h fma.h fmt.h fs.h gdl.h glob.h htb.h hton.h ipad.h lda.h \
main.h map.h mb8.h mbwc.h mem.h mux.h nwad.h nwif.h nwio.h \
oht.h opt.h path.h pio.h pma.h rbt.h rex.h sck.h sio.h sll.h \
slmb.h str.h task.h time.h tio.h tmr.h tre.h uni.h uri.h \
utf8.h xma.h $(am__append_1)
main.h map.h mb8.h mbwc.h mem.h nwad.h nwif.h nwio.h oht.h \
opt.h path.h pio.h pma.h rbt.h rex.h sck.h sio.h sll.h slmb.h \
str.h task.h time.h tio.h tmr.h tre.h uni.h uri.h utf8.h xma.h \
$(am__append_1)
all: all-am
.SUFFIXES:

View File

@ -4,6 +4,7 @@ pkginclude_HEADERS = \
cnd.h \
intr.h \
mtx.h \
mux.h \
rwl.h \
thr.h

View File

@ -117,7 +117,7 @@ am__can_run_installinfo = \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__pkginclude_HEADERS_DIST = cnd.h intr.h mtx.h rwl.h thr.h \
am__pkginclude_HEADERS_DIST = cnd.h intr.h mtx.h mux.h rwl.h thr.h \
SocketAddress.hpp
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
@ -344,7 +344,8 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
pkginclude_HEADERS = cnd.h intr.h mtx.h rwl.h thr.h $(am__append_1)
pkginclude_HEADERS = cnd.h intr.h mtx.h mux.h rwl.h thr.h \
$(am__append_1)
all: all-am
.SUFFIXES:

View File

@ -24,8 +24,8 @@
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _QSE_MUX_H_
#define _QSE_MUX_H_
#ifndef _QSE_SYS_MUX_H_
#define _QSE_SYS_MUX_H_
/** @file
* This file provides functions and data types for I/O multiplexing.