Created
March 13, 2023 13:26
Here is the famous line 2238
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2230 /* | |
2231 * If the new process paused because it was | |
2232 * swapped out, set the stack level to the last call 3333 * to savu(u_ssav). This means that the return | |
2235 * actually returns from the last routine which did | |
2236 * the savu. | |
2237 * | |
2238 * You are not expected to understand this. | |
2239 */ | |
2240 if(rp->p_flag&SSWAP) { | |
2241 rp->p_flag =& ~SSWAP; | |
2242 aretu(u.u_ssav); | |
2243 } | |
Ref: UNIX™ 6 Edition Kernel Source Code, © Western Electric Company |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment