X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Frmr%2Fsi%2Fsrc%2Fsi95%2Fsistruct.h;h=51a1e6af1d4ef97651f7790649b05ed441252289;hb=0a58458afe875798f0ac3f367bd05e4ba523e115;hp=c394afb0fe6b96ce4799b9c3451c43651c2c2c32;hpb=ec88d3c0563eeb6ae5f73427edb0b3c4d7acf299;p=ric-plt%2Flib%2Frmr.git diff --git a/src/rmr/si/src/si95/sistruct.h b/src/rmr/si/src/si95/sistruct.h index c394afb..51a1e6a 100644 --- a/src/rmr/si/src/si95/sistruct.h +++ b/src/rmr/si/src/si95/sistruct.h @@ -30,6 +30,9 @@ ****************************************************************************** */ +#ifndef _sistruct_h +#define _sistruct_h + struct ioq_blk // block to queue on session when i/o waiting { struct ioq_blk *next; // next block in the queue @@ -71,9 +74,6 @@ struct ginfo_blk { // general info block (context) fd_set readfds; // select/poll file des lists fd_set writefds; fd_set execpfds; - fd_set readfds_qs; // quick set read/write/except fd sets - fd_set writefds_qs; - fd_set execpfds_qs; char *rbuf; // read buffer struct callback_blk *cbtab; // pointer at the callback table int fdcount; // largest fd to select on in siwait @@ -83,3 +83,5 @@ struct ginfo_blk { // general info block (context) int sierr; // our internal error number (SI_ERR_* constants) struct tp_blk** tp_map; // direct fd -> tp block map }; + +#endif