diff options
author | Kevin Krakauer <krakauer@google.com> | 2021-03-18 15:38:13 -0700 |
---|---|---|
committer | Kevin Krakauer <krakauer@google.com> | 2021-05-06 13:04:55 -0700 |
commit | 4c9340fcbf0cb10c230925e24f082478f7c458a0 (patch) | |
tree | fafd60e6ce8f06122075cda08df76de0ad3494c7 /pkg/tcpip/BUILD | |
parent | 9800fd8e4717133476afb9bdc64f8384c53f82dd (diff) |
Fix alignment issue with 64-bit atomics on 32 bit machines
Diffstat (limited to 'pkg/tcpip/BUILD')
-rw-r--r-- | pkg/tcpip/BUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/tcpip/BUILD b/pkg/tcpip/BUILD index e96ba50ae..5237eba76 100644 --- a/pkg/tcpip/BUILD +++ b/pkg/tcpip/BUILD @@ -19,6 +19,8 @@ go_template_instance( go_library( name = "tcpip", srcs = [ + "aligned.go", + "aligned_unsafe.go", "errors.go", "sock_err_list.go", "socketops.go", |