Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gccgo, runtime: Wrong size for malloc of P struct in runtime_allp. #13309

Closed
laboger opened this issue Nov 18, 2015 · 1 comment
Closed

gccgo, runtime: Wrong size for malloc of P struct in runtime_allp. #13309

laboger opened this issue Nov 18, 2015 · 1 comment

Comments

@laboger
Copy link
Contributor

laboger commented Nov 18, 2015

I don't have a specific failure due to this, but was looking at the code for allocation of the P, M, and G structs within proc.c, and it looks to me like the size being used to allocate a P struct for the runtime_allp array is incorrect. The call to runtime_mallocgc for a new P struct is using the size of a pointer instead of the size of the struct. The line of code in procresize in libgo/runtime/proc.c looks like this:

p = (P*)runtime_mallocgc(sizeof(*p), 0, FlagNoInvokeGC);

Since it should be allocating a P struct I think it should be sizeof(P) instead.

@ianlancetaylor
Copy link
Member

This looks OK to me. This is C, not Go. p is a variable. sizeof(*p) returns the size of the type to which p points, which in this case is P.

@golang golang locked and limited conversation to collaborators Nov 17, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants