Merge remote-tracking branch 'origin/GP-0_d-millar_pty_for_macos' into patch

This commit is contained in:
Ryan Kurtz 2023-05-23 11:33:18 -04:00
commit 05ad0ea305
2 changed files with 37 additions and 0 deletions

View file

@ -18,6 +18,7 @@ package agent.gdb.pty;
import java.io.IOException;
import agent.gdb.pty.linux.LinuxPtyFactory;
import agent.gdb.pty.macos.MacosPtyFactory;
import agent.gdb.pty.windows.ConPtyFactory;
import ghidra.framework.OperatingSystem;
@ -33,6 +34,8 @@ public interface PtyFactory {
*/
static PtyFactory local() {
switch (OperatingSystem.CURRENT_OPERATING_SYSTEM) {
case MAC_OS_X:
return new MacosPtyFactory();
case LINUX:
return new LinuxPtyFactory();
case WINDOWS:

View file

@ -0,0 +1,34 @@
/* ###
* IP: GHIDRA
*
* 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.
*/
package agent.gdb.pty.macos;
import java.io.IOException;
import agent.gdb.pty.Pty;
import agent.gdb.pty.PtyFactory;
import agent.gdb.pty.linux.LinuxPty;
public class MacosPtyFactory implements PtyFactory {
@Override
public Pty openpty() throws IOException {
return LinuxPty.openpty();
}
@Override
public String getDescription() {
return "local (MacOS)";
}
}