1*5796c8dcSSimon Schubert /* Serial interface for UN*X file-descriptor based connection. 2*5796c8dcSSimon Schubert 3*5796c8dcSSimon Schubert Copyright (C) 1999, 2000, 2002, 2007, 2008, 2009 4*5796c8dcSSimon Schubert Free Software Foundation, Inc. 5*5796c8dcSSimon Schubert 6*5796c8dcSSimon Schubert This file is part of GDB. 7*5796c8dcSSimon Schubert 8*5796c8dcSSimon Schubert This program is free software; you can redistribute it and/or modify 9*5796c8dcSSimon Schubert it under the terms of the GNU General Public License as published by 10*5796c8dcSSimon Schubert the Free Software Foundation; either version 3 of the License, or 11*5796c8dcSSimon Schubert (at your option) any later version. 12*5796c8dcSSimon Schubert 13*5796c8dcSSimon Schubert This program is distributed in the hope that it will be useful, 14*5796c8dcSSimon Schubert but WITHOUT ANY WARRANTY; without even the implied warranty of 15*5796c8dcSSimon Schubert MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16*5796c8dcSSimon Schubert GNU General Public License for more details. 17*5796c8dcSSimon Schubert 18*5796c8dcSSimon Schubert You should have received a copy of the GNU General Public License 19*5796c8dcSSimon Schubert along with this program. If not, see <http://www.gnu.org/licenses/>. */ 20*5796c8dcSSimon Schubert 21*5796c8dcSSimon Schubert #ifndef SER_UNIX_H 22*5796c8dcSSimon Schubert #define SER_UNIX_H 23*5796c8dcSSimon Schubert 24*5796c8dcSSimon Schubert extern int ser_unix_read_prim (struct serial *scb, size_t count); 25*5796c8dcSSimon Schubert extern int ser_unix_write_prim (struct serial *scb, const void *buf, 26*5796c8dcSSimon Schubert size_t count); 27*5796c8dcSSimon Schubert 28*5796c8dcSSimon Schubert #endif 29