Initial exception support for signals.

Also separate signal ABI block allocations from the runtime interface object.

Change-Id: If16763338db664f29163a1348f8f4c38cf0597b2
このコミットが含まれているのは:
Sean Keely
2017-07-05 19:33:37 -05:00
コミット 2732b18092
11個のファイルの変更543行の追加192行の削除
-4
ファイルの表示
@@ -80,10 +80,6 @@ class Shared : public BaseShared {
shared_object_ =
reinterpret_cast<T*>(allocate_(sizeof(T), Max(__alignof(T), Align), 0));
assert(shared_object_ != NULL && "Failed on allocating shared_object_");
memset(shared_object_, 0, sizeof(T));
if (shared_object_ != NULL) new (shared_object_) T;
}