1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
|
/*
Copyright (C) 2010-2014 John E. Davis
This file is part of the S-Lang Library.
The S-Lang Library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The S-Lang Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
*/
#include <stdio.h>
#include <slang.h>
#include <unistd.h>
#include <string.h>
#include <termios.h>
#include <errno.h>
SLANG_MODULE(termios);
static int Termios_Type_Id = 0;
static int check_and_set_errno (int e)
{
#ifdef EINTR
if (e == EINTR)
return 0;
#endif
(void) SLerrno_set_errno (e);
return -1;
}
static int do_syscall_0 (int (*fun)(int), SLFile_FD_Type *f)
{
int fd;
int ret;
if (-1 == SLfile_get_fd (f, &fd))
return -1;
while ((-1 == (ret = (*fun) (fd)))
&& (0 == check_and_set_errno (errno)))
;
return ret;
}
static int do_syscall_1 (int (*fun)(int, int), SLFile_FD_Type *f, int arg)
{
int fd;
int ret;
if (-1 == SLfile_get_fd (f, &fd))
return -1;
while ((-1 == (ret = (*fun) (fd, arg)))
&& (0 == check_and_set_errno (errno)))
;
return ret;
}
static int do_syscall_struct_1 (int (*fun)(int, void *), SLFile_FD_Type *f, void *v)
{
int fd;
int ret;
if (-1 == SLfile_get_fd (f, &fd))
return -1;
while ((-1 == (ret = (*fun) (fd, v)))
&& (0 == check_and_set_errno (errno)))
;
return ret;
}
static int do_syscall_struct_2 (int (*fun)(int, int, void *), SLFile_FD_Type *f, int i, void *v)
{
int fd;
int ret;
if (-1 == SLfile_get_fd (f, &fd))
return -1;
while ((-1 == (ret = (*fun) (fd, i, v)))
&& (0 == check_and_set_errno (errno)))
;
return ret;
}
#define DO_SYSCALL_0(fun, f) do_syscall_0((int(*)(int))(fun),(f))
#define DO_SYSCALL_1(fun, f, i) do_syscall_1((int(*)(int,int))(fun),(f),(i))
#define DO_SYSCALL_STRUCT_1(fun, f, s) \
do_syscall_struct_1((int(*)(int, void*))(fun), (f), (void*)(s))
#define DO_SYSCALL_STRUCT_2(fun, f, i, s) \
do_syscall_struct_2((int(*)(int, int, void*))(fun), (f), (i), (void*)(s))
static int tcdrain_intrin (SLFile_FD_Type *f)
{
return DO_SYSCALL_0 (tcdrain, f);
}
static int tcflow_intrin (SLFile_FD_Type *f, int *action)
{
return DO_SYSCALL_1 (tcflow, f, *action);
}
static int tcflush_intrin (SLFile_FD_Type *f, int *action)
{
return DO_SYSCALL_1 (tcflush, f, *action);
}
static int tcgetpgrp_intrin (SLFile_FD_Type *f)
{
return DO_SYSCALL_0 (tcgetpgrp, f);
}
static int tcsetpgrp_intrin (SLFile_FD_Type *f, int *id)
{
return DO_SYSCALL_1 (tcgetpgrp, f, *id);
}
static int tcsendbreak_intrin (SLFile_FD_Type *f, int *action)
{
return DO_SYSCALL_1 (tcsendbreak, f, *action);
}
static void destroy_termios (SLtype type, VOID_STAR f)
{
(void) type;
SLfree ((char *) f);
}
static SLang_MMT_Type *allocate_termios (struct termios *s)
{
struct termios *s1;
SLang_MMT_Type *mmt;
s1 = (struct termios *) SLmalloc (sizeof (struct termios));
if (s1 == NULL)
return NULL;
memcpy (s1, s, sizeof (struct termios));
if (NULL == (mmt = SLang_create_mmt (Termios_Type_Id, (VOID_STAR) s1)))
SLfree ((char *) s1);
return mmt;
}
static void tcgetattr_intrin (SLFile_FD_Type *f)
{
struct termios s;
SLang_MMT_Type *mmt;
if (-1 == DO_SYSCALL_STRUCT_1(tcgetattr,f,&s))
{
SLang_push_null ();
return;
}
mmt = allocate_termios (&s); /* NULL ok */
if (-1 == SLang_push_mmt (mmt))
SLang_free_mmt (mmt);
}
static int tcsetattr_intrin (SLFile_FD_Type *f, int *when, struct termios *s)
{
return DO_SYSCALL_STRUCT_2(tcsetattr,f,*when,s);
}
static int termios_get_oflag (struct termios *s)
{
return s->c_oflag;
}
static int termios_get_iflag (struct termios *s)
{
return s->c_iflag;
}
static int termios_get_cflag (struct termios *s)
{
return s->c_cflag;
}
static int termios_get_lflag (struct termios *s)
{
return s->c_lflag;
}
static void termios_get_cc (struct termios *s)
{
SLang_Array_Type *at;
SLindex_Type dims = NCCS;
int i;
unsigned char *at_data;
at = SLang_create_array (SLANG_UCHAR_TYPE, 0, NULL, &dims, 1);
if (at == NULL)
return;
at_data = (unsigned char *) at->data;
for (i = 0; i < NCCS; i++)
at_data[i] = (unsigned char) s->c_cc[i];
(void) SLang_push_array (at, 1);
}
static void termios_set_oflag (struct termios *s, int *flag)
{
s->c_oflag = *flag;
}
static void termios_set_iflag (struct termios *s, int *flag)
{
s->c_iflag = *flag;
}
static void termios_set_cflag (struct termios *s, int *flag)
{
s->c_cflag = *flag;
}
static void termios_set_lflag (struct termios *s, int *flag)
{
s->c_lflag = *flag;
}
static void termios_set_cc (void)
{
SLang_Array_Type *at;
SLang_MMT_Type *mmt;
struct termios *s;
unsigned char *at_data;
int i;
if (-1 == SLang_pop_array_of_type (&at, SLANG_UCHAR_TYPE))
return;
if (NULL == (mmt = SLang_pop_mmt (Termios_Type_Id)))
goto free_and_return;
s = (struct termios *) SLang_object_from_mmt (mmt);
if (at->num_elements != NCCS)
{
SLang_verror (SL_TYPE_MISMATCH,
"Expecting UChar_Type[%d]", NCCS);
goto free_and_return;
}
at_data = (unsigned char *) at->data;
for (i = 0; i < NCCS; i++)
s->c_cc[i] = at_data[i];
/* drop */
free_and_return:
SLang_free_array (at);
SLang_free_mmt (mmt);
}
typedef struct
{
unsigned int bspeed;
unsigned int speed;
}
Baudrate_Map_Type;
Baudrate_Map_Type Baudrate_Map[] =
{
#ifdef B0
{B0, 0},
#endif
#ifdef B50
{B50, 50},
#endif
#ifdef B75
{B75, 75},
#endif
#ifdef B110
{B110, 110},
#endif
#ifdef B134
{B134, 134},
#endif
#ifdef B150
{B150, 150},
#endif
#ifdef B200
{B200, 200},
#endif
#ifdef B300
{B300, 300},
#endif
#ifdef B600
{B600, 600},
#endif
#ifdef B1200
{B1200, 1200},
#endif
#ifdef B1800
{B1800, 1800},
#endif
#ifdef B2400
{B2400, 2400},
#endif
#ifdef B4800
{B4800, 4800},
#endif
#ifdef B9600
{B9600, 9600},
#endif
#ifdef B19200
{B19200, 19200},
#endif
#ifdef B38400
{B38400, 38400},
#endif
#ifdef B57600
{B57600, 57600},
#endif
#ifdef B115200
{B115200, 115200},
#endif
#ifdef B230400
{B230400, 230400},
#endif
#ifdef B460800
{B460800, 460800},
#endif
#ifdef B500000
{B500000, 500000},
#endif
#ifdef B576000
{B576000, 576000},
#endif
#ifdef B921600
{B921600, 921600},
#endif
#ifdef B1000000
{B1000000, 1000000},
#endif
#ifdef B1152000
{B1152000, 1152000},
#endif
#ifdef B1500000
{B1500000, 1500000},
#endif
#ifdef B2000000
{B2000000, 2000000},
#endif
#ifdef B2500000
{B2500000, 2500000},
#endif
#ifdef B3000000
{B3000000, 3000000},
#endif
#ifdef B3500000
{B3500000, 3500000},
#endif
#ifdef B4000000
{B4000000, 4000000},
#endif
{0, 0}
};
static int map_speed_to_bspeed (unsigned int speed, unsigned int *bspeed)
{
Baudrate_Map_Type *b, *bmax;
b = Baudrate_Map;
bmax = Baudrate_Map + (sizeof(Baudrate_Map)/sizeof(Baudrate_Map_Type)-1);
while (b < bmax)
{
if (b->speed == speed)
{
*bspeed = b->bspeed;
return 0;
}
b++;
}
SLang_verror (SL_InvalidParm_Error, "Invalid or Unsupported baudrate %u", speed);
return -1;
}
static int map_bspeed_to_speed (unsigned int bspeed, unsigned int *speed)
{
Baudrate_Map_Type *b, *bmax;
b = Baudrate_Map;
bmax = Baudrate_Map + (sizeof(Baudrate_Map)/sizeof(Baudrate_Map_Type)-1);
while (b < bmax)
{
if (b->bspeed == bspeed)
{
*speed = b->speed;
return 0;
}
b++;
}
SLang_verror (SL_InvalidParm_Error, "Invalid or Unsupported baudrate %u", bspeed);
return -1;
}
static void cfgetispeed_intrin (struct termios *t)
{
unsigned int speed, bspeed;
bspeed = cfgetispeed (t);
if (0 == map_bspeed_to_speed (bspeed, &speed))
(void) SLang_push_uint (speed);
}
static void cfgetospeed_intrin (struct termios *t)
{
unsigned int speed, bspeed;
bspeed = cfgetospeed (t);
if (0 == map_bspeed_to_speed (bspeed, &speed))
(void) SLang_push_uint (speed);
}
static int cfsetispeed_intrin (struct termios *t, unsigned int *speed)
{
unsigned int bspeed;
if (-1 == map_speed_to_bspeed (*speed, &bspeed))
return -1;
if (-1 == cfsetispeed (t, bspeed))
{
(void) SLerrno_set_errno (errno);
return -1;
}
return 0;
}
static int cfsetospeed_intrin (struct termios *t, unsigned int *speed)
{
unsigned int bspeed;
if (-1 == map_speed_to_bspeed (*speed, &bspeed))
return -1;
if (-1 == cfsetospeed (t, bspeed))
{
(void) SLerrno_set_errno (errno);
return -1;
}
return 0;
}
static int termios_dereference (SLtype type, VOID_STAR addr)
{
struct termios *s;
SLang_MMT_Type *mmt;
(void) type;
mmt = *(SLang_MMT_Type **) addr;
if (NULL == (s = (struct termios *)SLang_object_from_mmt (mmt)))
return -1;
mmt = allocate_termios (s);
if (-1 == SLang_push_mmt (mmt))
{
SLang_free_mmt (mmt);
return -1;
}
return 0;
}
#define DUMMY_TERMIOS_TYPE ((unsigned int)-1)
#define T DUMMY_TERMIOS_TYPE
#define F SLANG_FILE_FD_TYPE
#define I SLANG_INT_TYPE
#define V SLANG_VOID_TYPE
#define U SLANG_UINT_TYPE
static SLang_Intrin_Fun_Type Termios_Intrinsics [] =
{
MAKE_INTRINSIC_1("tcdrain", tcdrain_intrin, I, F),
MAKE_INTRINSIC_2("tcflow", tcflow_intrin, I, F, I),
MAKE_INTRINSIC_2("tcflush", tcflush_intrin, I, F, I),
MAKE_INTRINSIC_1("tcgetpgrp", tcgetpgrp_intrin, I, F),
MAKE_INTRINSIC_2("tcsetpgrp", tcsetpgrp_intrin, I, F, I),
MAKE_INTRINSIC_2("tcsendbreak", tcsendbreak_intrin, I, F, I),
MAKE_INTRINSIC_1("tcgetattr", tcgetattr_intrin, V, F),
MAKE_INTRINSIC_3("tcsetattr", tcsetattr_intrin, I, F, I, T),
MAKE_INTRINSIC_1("cfgetispeed", cfgetispeed_intrin, V, T),
MAKE_INTRINSIC_1("cfgetospeed", cfgetospeed_intrin, V, T),
MAKE_INTRINSIC_2("cfsetispeed", cfsetispeed_intrin, I, T, U),
MAKE_INTRINSIC_2("cfsetospeed", cfsetospeed_intrin, I, T, U),
MAKE_INTRINSIC_1("termios_get_oflag", termios_get_oflag, I, T),
MAKE_INTRINSIC_1("termios_get_iflag", termios_get_iflag, I, T),
MAKE_INTRINSIC_1("termios_get_cflag", termios_get_cflag, I, T),
MAKE_INTRINSIC_1("termios_get_lflag", termios_get_lflag, I, T),
MAKE_INTRINSIC_1("termios_get_cc", termios_get_cc, V, T),
MAKE_INTRINSIC_2("termios_set_oflag", termios_set_oflag, V, T, I),
MAKE_INTRINSIC_2("termios_set_iflag", termios_set_iflag, V, T, I),
MAKE_INTRINSIC_2("termios_set_cflag", termios_set_cflag, V, T, I),
MAKE_INTRINSIC_2("termios_set_lflag", termios_set_lflag, V, T, I),
MAKE_INTRINSIC_0("termios_set_cc", termios_set_cc, V),
SLANG_END_INTRIN_FUN_TABLE
};
#undef T
#undef I
#undef F
#undef V
#undef U
static SLang_IConstant_Type Termios_Consts [] =
{
#ifdef BRKINT
MAKE_ICONSTANT("BRKINT", BRKINT),
#endif
#ifdef CLOCAL
MAKE_ICONSTANT("CLOCAL", CLOCAL),
#endif
#ifdef CREAD
MAKE_ICONSTANT("CREAD", CREAD),
#endif
#ifdef CS5
MAKE_ICONSTANT("CS5", CS5),
#endif
#ifdef CS6
MAKE_ICONSTANT("CS6", CS6),
#endif
#ifdef CS7
MAKE_ICONSTANT("CS7", CS7),
#endif
#ifdef CS8
MAKE_ICONSTANT("CS8", CS8),
#endif
#ifdef CSIZE
MAKE_ICONSTANT("CSIZE", CSIZE),
#endif
#ifdef CSTOPB
MAKE_ICONSTANT("CSTOPB", CSTOPB),
#endif
#ifdef ECHO
MAKE_ICONSTANT("ECHO", ECHO),
#endif
#ifdef ECHOE
MAKE_ICONSTANT("ECHOE", ECHOE),
#endif
#ifdef ECHOK
MAKE_ICONSTANT("ECHOK", ECHOK),
#endif
#ifdef ECHONL
MAKE_ICONSTANT("ECHONL", ECHONL),
#endif
#ifdef HUPCL
MAKE_ICONSTANT("HUPCL", HUPCL),
#endif
#ifdef ICANON
MAKE_ICONSTANT("ICANON", ICANON),
#endif
#ifdef ICRNL
MAKE_ICONSTANT("ICRNL", ICRNL),
#endif
#ifdef IEXTEN
MAKE_ICONSTANT("IEXTEN", IEXTEN),
#endif
#ifdef IGNBRK
MAKE_ICONSTANT("IGNBRK", IGNBRK),
#endif
#ifdef IGNCR
MAKE_ICONSTANT("IGNCR", IGNCR),
#endif
#ifdef IGNPAR
MAKE_ICONSTANT("IGNPAR", IGNPAR),
#endif
#ifdef INLCR
MAKE_ICONSTANT("INLCR", INLCR),
#endif
#ifdef INPCK
MAKE_ICONSTANT("INPCK", INPCK),
#endif
#ifdef ISIG
MAKE_ICONSTANT("ISIG", ISIG),
#endif
#ifdef ISTRIP
MAKE_ICONSTANT("ISTRIP", ISTRIP),
#endif
#ifdef IXOFF
MAKE_ICONSTANT("IXOFF", IXOFF),
#endif
#ifdef IXON
MAKE_ICONSTANT("IXON", IXON),
#endif
#ifdef NOFLSH
MAKE_ICONSTANT("NOFLSH", NOFLSH),
#endif
#ifdef OPOST
MAKE_ICONSTANT("OPOST", OPOST),
#endif
#ifdef PARENB
MAKE_ICONSTANT("PARENB", PARENB),
#endif
#ifdef PARMRK
MAKE_ICONSTANT("PARMRK", PARMRK),
#endif
#ifdef PARODD
MAKE_ICONSTANT("PARODD", PARODD),
#endif
#ifdef TCIFLUSH
MAKE_ICONSTANT("TCIFLUSH", TCIFLUSH),
#endif
#ifdef TCIOFF
MAKE_ICONSTANT("TCIOFF", TCIOFF),
#endif
#ifdef TCIOFLUSH
MAKE_ICONSTANT("TCIOFLUSH", TCIOFLUSH),
#endif
#ifdef TCION
MAKE_ICONSTANT("TCION", TCION),
#endif
#ifdef TCOFLUSH
MAKE_ICONSTANT("TCOFLUSH", TCOFLUSH),
#endif
#ifdef TCOOFF
MAKE_ICONSTANT("TCOOFF", TCOOFF),
#endif
#ifdef TCOON
MAKE_ICONSTANT("TCOON", TCOON),
#endif
#ifdef TCSADRAIN
MAKE_ICONSTANT("TCSADRAIN", TCSADRAIN),
#endif
#ifdef TCSAFLUSH
MAKE_ICONSTANT("TCSAFLUSH", TCSAFLUSH),
#endif
#ifdef TCSANOW
MAKE_ICONSTANT("TCSANOW", TCSANOW),
#endif
#ifdef TOSTOP
MAKE_ICONSTANT("TOSTOP", TOSTOP),
#endif
#ifdef VEOF
MAKE_ICONSTANT("VEOF", VEOF),
#endif
#ifdef VEOL
MAKE_ICONSTANT("VEOL", VEOL),
#endif
#ifdef VERASE
MAKE_ICONSTANT("VERASE", VERASE),
#endif
#ifdef VINTR
MAKE_ICONSTANT("VINTR", VINTR),
#endif
#ifdef VKILL
MAKE_ICONSTANT("VKILL", VKILL),
#endif
#ifdef VMIN
MAKE_ICONSTANT("VMIN", VMIN),
#endif
#ifdef VQUIT
MAKE_ICONSTANT("VQUIT", VQUIT),
#endif
#ifdef VSTART
MAKE_ICONSTANT("VSTART", VSTART),
#endif
#ifdef VSTOP
MAKE_ICONSTANT("VSTOP", VSTOP),
#endif
#ifdef VSUSP
MAKE_ICONSTANT("VSUSP", VSUSP),
#endif
#ifdef VTIME
MAKE_ICONSTANT("VTIME", VTIME),
#endif
#ifdef CRTSCTS /* not POSIX */
MAKE_ICONSTANT("CRTSCTS", CRTSCTS),
#endif
#ifdef IXANY
MAKE_ICONSTANT("IXANY", IXANY),
#endif
#ifdef ultrix /* Ultrix gets _POSIX_VDISABLE wrong! */
# define NULL_VALUE -1
#else
# ifdef _POSIX_VDISABLE
# define NULL_VALUE _POSIX_VDISABLE
# else
# define NULL_VALUE 255
# endif
#endif
MAKE_ICONSTANT("VDISABLE", NULL_VALUE),
SLANG_END_ICONST_TABLE
};
static int register_termios_type (void)
{
SLang_Class_Type *cl;
if (Termios_Type_Id != 0)
return 0;
if (NULL == (cl = SLclass_allocate_class ("Termios_Type")))
return -1;
if (-1 == SLclass_set_destroy_function (cl, destroy_termios))
return -1;
if (-1 == SLclass_set_deref_function (cl, termios_dereference))
return -1;
/* By registering as SLANG_VOID_TYPE, slang will dynamically allocate a
* type.
*/
if (-1 == SLclass_register_class (cl, SLANG_VOID_TYPE, sizeof (struct termios), SLANG_CLASS_TYPE_MMT))
return -1;
Termios_Type_Id = SLclass_get_class_id (cl);
if (-1 == SLclass_patch_intrin_fun_table1 (Termios_Intrinsics, DUMMY_TERMIOS_TYPE, Termios_Type_Id))
return -1;
return 0;
}
int init_termios_module_ns (char *ns_name)
{
SLang_NameSpace_Type *ns;
ns = SLns_create_namespace (ns_name);
if (ns == NULL)
return -1;
if (-1 == register_termios_type ())
return -1;
if ((-1 == SLns_add_intrin_fun_table (ns, Termios_Intrinsics, "__TERMIOS__"))
|| (-1 == SLns_add_iconstant_table (ns, Termios_Consts, NULL)))
return -1;
return 0;
}
/* This function is optional */
void deinit_termios_module (void)
{
}
|