หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'label' : jump out of OpenMP structured block not allowed
Remarks
Code cannot jump into or out of an OpenMP block.
Example
The following example generates C3010:
// C3010.c
// compile with: /openmp
int main() {
#pragma omp parallel
{
#pragma omp parallel
{
goto lbl3;
}
}
lbl3:; // C3010
}