Issue |
139509
|
Summary |
[lldb][AIX] Need to add per thread variants of getProcFile in AIX
|
Labels |
new issue
|
Assignees |
|
Reporter |
DhruvSrivastavaX
|
With this PR,
We have moved the Support.cpp common variants under posix, which aix and other platforms can directly use:
- https://github.com/llvm/llvm-project/pull/134354
But we need AIX variant for thread version of getProcFile.
`lldb_private::getProcFile(::pid_t pid, ::pid_t tid, const llvm::Twine &file) `
It is different than linux as follows:
- Linux has` /proc/<pid>/task`
- AIX has` /proc/<pid>/lwp `
We can create our aix/Support.cpp and implement the same there.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs