/* Writing off the end of the RAM allocated to this task will *NOT* cause a\r
protection fault because the task is still executing in a privileged mode. \r
Uncomment the following to test. */\r
- /*cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] = 'a';*/\r
+ /* cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] = 'a'; */\r
\r
/* Now set the task into user mode. */\r
portSWITCH_TO_USER_MODE();\r
\r
/* Accessing the privileged only array will now cause a fault. Uncomment \r
the following line to test. */ \r
- /*cPrivilegedOnlyAccessArray[ 0 ] = 'a';*/\r
+ /* cPrivilegedOnlyAccessArray[ 0 ] = 'a'; */\r
\r
/* The read/write array can still be successfully read and written. */\r
for( l = 0; l < mainREAD_WRITE_ALIGN_SIZE; l++ )\r
ulReadData = *pul; */\r
\r
/* pul = __privileged_data_start__;\r
- ulReadData = *pul; */\r
+ ulReadData = *pul; */ \r
\r
/* pul = __privileged_data_end__ - 1;\r
ulReadData = *pul; */\r