2

Will IPC "void method"-calls without any parameters block the current thread/process? Or will the kernel just pause the caller-process/thread until the call finishes because the called process may do further IPC callbacks?

Shraal
  • 23
  • 6

1 Answers1

2

No, depends on the definition of the specific AIDL declaration of the function. If the AIDL defines the function as one way, then it's non-blocking, otherwise it's blocking.

Paul Ratazzi
  • 6,289
  • 3
  • 38
  • 50
EyalBellisha
  • 1,874
  • 19
  • 28