2016-12-11 01:19:51 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Jehanne.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015-2017 Giacomo Tesio <giacomo@tesio.it>
|
|
|
|
*
|
|
|
|
* Jehanne 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, version 2 of the License.
|
|
|
|
*
|
|
|
|
* Jehanne 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 Jehanne. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <u.h>
|
|
|
|
#include <libc.h>
|
|
|
|
|
|
|
|
int
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_pipe(int pipes[2])
|
2016-12-11 01:19:51 +01:00
|
|
|
{
|
2017-01-05 03:02:56 +01:00
|
|
|
FdPair pset;
|
2019-11-26 02:25:23 +01:00
|
|
|
pset.aslong = sys_remove("#0/pipes");
|
2017-01-05 03:02:56 +01:00
|
|
|
if(pset.aslong == -1)
|
2016-12-11 01:19:51 +01:00
|
|
|
return -1;
|
|
|
|
pipes[0] = pset.fd[0];
|
|
|
|
pipes[1] = pset.fd[1];
|
|
|
|
return 0;
|
|
|
|
}
|