aqhome: started rewriting IPC module.

started with basic event interface using unix fd and timers.
This commit is contained in:
Martin Preuss
2025-01-07 22:43:20 +01:00
parent 2ac1182879
commit 28b130ecd4
12 changed files with 1041 additions and 0 deletions

88
aqhome/events2/0BUILD Normal file
View File

@@ -0,0 +1,88 @@
<?xml?>
<gwbuild>
<target type="ConvenienceLibrary" name="aqhevents2" >
<includes type="c" >
$(gwenhywfar_cflags)
$(aqdatabase_cflags)
-I$(topsrcdir)
-I$(topbuilddir)
</includes>
<includes type="tm2" >
--include=$(builddir)
--include=$(srcdir)
--include=$(aqdatabase_AQDATABASE_TYPEMAKERDIR)/c
</includes>
<define name="BUILDING_AQHOME" />
<setVar name="local/cflags">$(visibility_cflags)</setVar>
<setVar name="tm2flags" >
--api=AQHOME_API
</setVar>
<setVar name="local/typefiles" >
</setVar>
<setVar name="local/built_sources" >
</setVar>
<setVar name="local/built_headers_pub">
</setVar>
<setVar name="local/built_headers_priv" >
</setVar>
<headers dist="false" install="$(pkgincludedir)/data" >
$(local/built_headers_pub)
</headers>
<headers dist="true" install="$(pkgincludedir)/data" >
eventloop.h
object.h
fdobject.h
</headers>
<headers dist="true" >
eventloop_p.h
object_p.h
fdobject_p.h
</headers>
<sources>
$(local/typefiles)
eventloop.c
eventloop_select.c
object.c
fdobject.c
</sources>
<extradist>
</extradist>
<useTargets>
</useTargets>
<subdirs>
</subdirs>
</target>
</gwbuild>