Tcl Source Code

Check-in [7c1aae5292]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Patch to add support for higher baud rates under Unix Ticket [e770d92d76]]
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | ticket-e770d92d6
Files: files | file ages | folders
SHA1: 7c1aae5292b3e6cddfe64c457c07b1720bd3235d
User & Date: hypnotoad 2015-06-10 21:53:47
Original Comment: Patch to add support for higher baud rates under Unix
Context
2015-06-16
07:39
Fix [e770d92d76]: Add support for higher baud rates in Tcl check-in: 17df50552d user: jan.nijtmans tags: core-8-5-branch
2015-06-10
21:53
Patch to add support for higher baud rates under Unix Ticket [e770d92d76]] Closed-Leaf check-in: 7c1aae5292 user: hypnotoad tags: ticket-e770d92d6
2015-03-11
12:30
update changes Closed-Leaf check-in: 824b141077 user: dgp tags: rc1, release, core-8-6-4, core-8-6-4-rc
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to unix/tclUnixChan.c.

984
985
986
987
988
989
990

































991
992
993
994
995
996
997
#endif
#ifdef B307200
    {307200, B307200},
#endif
#ifdef B460800
    {460800, B460800},
#endif

































    {-1, 0}
};

/*
 *---------------------------------------------------------------------------
 *
 * TtyGetSpeed --







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
#endif
#ifdef B307200
    {307200, B307200},
#endif
#ifdef B460800
    {460800, B460800},
#endif
#ifdef B500000
    {500000, B500000},
#endif
#ifdef B576000
    {576000, B576000},
#endif
#ifdef B921600
    {921600, B921600},
#endif
#ifdef B1000000
    {1000000, B1000000},
#endif
#ifdef B1152000
    {1152000, B1152000},
#endif
#ifdef B1500000
    {1500000,B1500000},
#endif
#ifdef B2000000
    {2000000, B2000000},
#endif
#ifdef B2500000
    {2500000,B2500000},
#endif
#ifdef B3000000
    {3000000,B3000000},
#endif
#ifdef B3500000
    {3500000,B3500000},
#endif
#ifdef B4000000
    {4000000,B4000000},
#endif
    {-1, 0}
};

/*
 *---------------------------------------------------------------------------
 *
 * TtyGetSpeed --