summaryrefslogtreecommitdiff
path: root/jni/forkpty.h
diff options
context:
space:
mode:
authorMichael Wright <michaelwr@google.com>2013-02-20 20:22:41 -0800
committerMichael Wright <michaelwr@google.com>2013-02-20 21:13:07 -0800
commita36312d9912f701dd1dbf0b3d35b198bb5f4ab2f (patch)
tree90b0c2461afb3495ad55495bfd89034f161c1a58 /jni/forkpty.h
parent410e0da343fd581f3112037deb475db9fb0da850 (diff)
downloadTerminal-a36312d9912f701dd1dbf0b3d35b198bb5f4ab2f.tar.gz
Add forkpty function
Change-Id: I2eaac8c2c5c50f870a5a56806d0fd19dc5f386a1
Diffstat (limited to 'jni/forkpty.h')
-rw-r--r--jni/forkpty.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/jni/forkpty.h b/jni/forkpty.h
new file mode 100644
index 0000000..6b4da38
--- /dev/null
+++ b/jni/forkpty.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <termios.h>
+#include <unistd.h>
+
+pid_t forkpty(int *master, int *slave, const struct termios *termp,
+ const struct winsize *winp);