-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
sync/atomic: support int/uint types #5721
Comments
>The number of times where you can use atomics to store just one value of unspecified size is small. I disagree. While int has unspecified size, it has "sufficiently large" size since it's used as e.g. slice len. An examples are: - assign unique ids to goroutines - count number of pending goroutines/work items - atomic flag (0/1), e.g. "stop flag" or "has errors" |
I have no problem with atomic ints in the runtime. I don't understand why they need to be in sync/atomic. I think it is safe to assume that there are no more than active 2^31-1 goroutines in a program. To assign unique IDs, you'd want an int64 to avoid reuse, even on a 32-bit system. To count number of pending goroutines, an int32 seems fine. For an atomic flag, an int32 seems better than an int: you avoid wasting space on 64-bit systems. Atomics make it harder to reason about the correctness of programs. Being required to specify the size of the atomic word at least removes one variable from the correctness decision. Also, I like the fact that it's inconvenient to use atomics. It should be. I especially like David's comment, about not having atomic ints making him think about using mutexes instead. That's exactly the behavior we want to encourage. |
int is needed when it refers to an index in a slice. int is at least as needed as all signed atomic operations (or all unsigned) and uintptr (or unsafe.Pointer). What is "really needed" is 1 type uint64. Everything else is expressible through it with some amount of casts and assumptions. |
I've looked at vitess source for cases where atomic variables refer to slice/map/chan len/cap. https://code.google.com/p/vitess/source/browse/go/pools/resource_pool.go capacity sync2.AtomicInt64 represents chan capacity https://code.google.com/p/vitess/source/browse/go/streamlog/streamlog.go size sync2.AtomicUint32 represents map size https://code.google.com/p/vitess/source/browse/go/vt/tabletserver/query_engine.go streamBufferSize sync2.AtomicInt32 represent sum of slice len's In lots of other cases which do not require huge vals (e.g. unique ids or total bytes read), int would be just more natural and remove casts because all other types around are int's. |
Here is the code: sequentially numbering files while uploading to AWS S3 from multiple goroutines.
|
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
Yeah, it sounds reasonable even in 2019. |
The Linux kernel has a new |
Could you expand on that, please? Do you mean updating slice lengths using unsafe? In general, things like io_uring make it even more expedient to be explicit and think about the exact quantity you want to update as the kernel's idea of an int might be very different from Go's. Looks more like a reason to not add int/uint functions to sync/atomic. |
The text was updated successfully, but these errors were encountered: