mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
Sandbox not active error tracking observations
This commit is contained in:
parent
d51d558083
commit
3fb4d59545
|
@ -21,3 +21,10 @@ Sandboxed main observations:
|
|||
=> loop in pffft_transform for N = 64 (why?);
|
||||
N = 64, status OK, pffft_transform generates error
|
||||
N > 64, status not OK
|
||||
Problem on initialising sapi::StatusOr<PFFFT_Setup *> s;
|
||||
the memory that stays for s is not the same with the address passed
|
||||
in pffft_transform function.
|
||||
(sapi::v::GenericPtr to be changed?)
|
||||
|
||||
Temporary solution (not done): change the generated files to accept
|
||||
uintptr_t instead of PFFFT_Setup
|
||||
|
|
|
@ -73,6 +73,8 @@ int main(int argc, char* argv[]) {
|
|||
pffftSapiSandbox sandbox;
|
||||
sandbox.Init().IgnoreError();
|
||||
|
||||
printf("%s\n", sandbox.Init().ToString().c_str());
|
||||
|
||||
pffftApi api(&sandbox);
|
||||
|
||||
int N, cplx;
|
||||
|
|
Loading…
Reference in New Issue
Block a user