Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
liboop
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Magnus Holmgren
liboop
Commits
c6d9b102
Commit
c6d9b102
authored
8 years ago
by
Niels Möller
Browse files
Options
Downloads
Plain Diff
Merge branch 'holmgren/liboop-master'
parents
9a175952
3ada365c
Branches
master
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#341
failed
6 years ago
Stage: build
Stage: test
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+9
-0
9 additions, 0 deletions
.gitignore
Makefile.am
+1
-1
1 addition, 1 deletion
Makefile.am
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
glib.c
+8
-0
8 additions, 0 deletions
glib.c
select.c
+8
-0
8 additions, 0 deletions
select.c
with
27 additions
and
2 deletions
.gitignore
+
9
−
0
View file @
c6d9b102
*~
*~
*.o
*.lo
*.la
test-oop
test-oop
*.pc
*.pc
/.libs
/.deps
# autoconf related
# autoconf related
configure
configure
aclocal.m4
aclocal.m4
autom4te.cache
autom4te.cache
config.log
config.status
Makefile
# automake related
# automake related
Makefile.in
Makefile.in
compile
compile
...
@@ -12,4 +20,5 @@ config.guess
...
@@ -12,4 +20,5 @@ config.guess
config.sub
config.sub
depcomp
depcomp
ltmain.sh
ltmain.sh
libtool
missing
missing
This diff is collapsed.
Click to expand it.
Makefile.am
+
1
−
1
View file @
c6d9b102
...
@@ -14,7 +14,7 @@ pkgconfigdir = $(libdir)/pkgconfig
...
@@ -14,7 +14,7 @@ pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA
=
liboop.pc liboop-glib2.pc
pkgconfig_DATA
=
liboop.pc liboop-glib2.pc
# versions updated as of 1.0
# versions updated as of 1.0
liboop_la_LDFLAGS
=
-version-info
4:1:0
# version:revision:age
liboop_la_LDFLAGS
=
-version-info
5:0:1
# version:revision:age
liboop_la_SOURCES
=
sys.c
select
.c signal.c alloc.c read.c read-fd.c read-mem.c
liboop_la_SOURCES
=
sys.c
select
.c signal.c alloc.c read.c read-fd.c read-mem.c
liboop_adns_la_LDFLAGS
=
-version-info
3:0:0
-rpath
'
$(
libdir
)
'
liboop_adns_la_LDFLAGS
=
-version-info
3:0:0
-rpath
'
$(
libdir
)
'
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
1
View file @
c6d9b102
dnl Process this file with autoconf to produce a configure script.
dnl Process this file with autoconf to produce a configure script.
AC_INIT(INSTALL)
AC_INIT(INSTALL)
AM_INIT_AUTOMAKE(liboop,1.0)
AM_INIT_AUTOMAKE(liboop,1.0
.1
)
AC_CANONICAL_HOST
AC_CANONICAL_HOST
AM_PROG_LIBTOOL
AM_PROG_LIBTOOL
AC_PROG_CC
AC_PROG_CC
...
...
This diff is collapsed.
Click to expand it.
glib.c
+
8
−
0
View file @
c6d9b102
...
@@ -18,6 +18,14 @@
...
@@ -18,6 +18,14 @@
#include
<poll.h>
#include
<poll.h>
#endif
#endif
#ifdef HAVE_STRING_H
# include <string.h>
/* Needed on NetBSD1.1/SPARC due to bzero/FD_ZERO. */
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
/* Needed on AIX 4.2 due to bzero/FD_ZERO. */
#endif
static
int
use_count
=
0
;
static
int
use_count
=
0
;
static
oop_source_sys
*
sys
;
static
oop_source_sys
*
sys
;
static
oop_adapter_select
*
sel
;
static
oop_adapter_select
*
sel
;
...
...
This diff is collapsed.
Click to expand it.
select.c
+
8
−
0
View file @
c6d9b102
...
@@ -8,6 +8,14 @@
...
@@ -8,6 +8,14 @@
#include
<assert.h>
#include
<assert.h>
#ifdef HAVE_STRING_H
# include <string.h>
/* Needed on NetBSD1.1/SPARC due to bzero/FD_ZERO. */
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
/* Needed on AIX 4.2 due to bzero/FD_ZERO. */
#endif
struct
select_set
{
struct
select_set
{
fd_set
rfd
,
wfd
,
xfd
;
fd_set
rfd
,
wfd
,
xfd
;
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment