Page MenuHomeFreeBSD

libkern: Add arc4random_uniform
ClosedPublic

Authored by manu on May 22 2020, 5:21 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Nov 5, 12:34 PM
Unknown Object (File)
Sep 24 2024, 2:56 PM
Unknown Object (File)
Sep 24 2024, 2:56 PM
Unknown Object (File)
Sep 24 2024, 2:56 PM
Unknown Object (File)
Sep 24 2024, 2:56 PM
Unknown Object (File)
Sep 12 2024, 7:45 AM
Unknown Object (File)
Sep 10 2024, 4:39 PM
Unknown Object (File)
Sep 1 2024, 3:37 PM
Subscribers

Details

Summary

This variant get a random number up to the limit passed as the argument.
This is simply a copy of the libc version.

Sponsored-by: The FreeBSD Foundation

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Hm, libc version is (or was) a separate file with a different copyright. Usual pattern in libkern is to just copy the libc files to libkern verbatim and only fixup as needed to compile. I don't know that we always have to do that, but we should at least confirm the arc4random_uniform copyright follows the code.

In D24962#549612, @cem wrote:

Hm, libc version is (or was) a separate file with a different copyright. Usual pattern in libkern is to just copy the libc files to libkern verbatim and only fixup as needed to compile. I don't know that we always have to do that, but we should at least confirm the arc4random_uniform copyright follows the code.

Right, I didn't pay attention to the licence of the file when I opened it. I'll fix that in a bit

This revision is now accepted and ready to land.May 22 2020, 6:06 PM
This revision now requires review to proceed.May 23 2020, 12:08 PM
This revision is now accepted and ready to land.May 23 2020, 4:09 PM
This revision was automatically updated to reflect the committed changes.