mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-0: quick fix for macos/gdb support
This commit is contained in:
parent
0cae3ab0f5
commit
dec2620bea
2 changed files with 37 additions and 0 deletions
|
@ -18,6 +18,7 @@ package agent.gdb.pty;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import agent.gdb.pty.linux.LinuxPtyFactory;
|
import agent.gdb.pty.linux.LinuxPtyFactory;
|
||||||
|
import agent.gdb.pty.macos.MacosPtyFactory;
|
||||||
import agent.gdb.pty.windows.ConPtyFactory;
|
import agent.gdb.pty.windows.ConPtyFactory;
|
||||||
import ghidra.framework.OperatingSystem;
|
import ghidra.framework.OperatingSystem;
|
||||||
|
|
||||||
|
@ -33,6 +34,8 @@ public interface PtyFactory {
|
||||||
*/
|
*/
|
||||||
static PtyFactory local() {
|
static PtyFactory local() {
|
||||||
switch (OperatingSystem.CURRENT_OPERATING_SYSTEM) {
|
switch (OperatingSystem.CURRENT_OPERATING_SYSTEM) {
|
||||||
|
case MAC_OS_X:
|
||||||
|
return new MacosPtyFactory();
|
||||||
case LINUX:
|
case LINUX:
|
||||||
return new LinuxPtyFactory();
|
return new LinuxPtyFactory();
|
||||||
case WINDOWS:
|
case WINDOWS:
|
||||||
|
|
|
@ -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)";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue