Changeset afb1e35 in mainline for tools/mktmpfs.py
- Timestamp:
- 2008-05-30T14:23:29Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6387c18
- Parents:
- 960f8476
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/mktmpfs.py
r960f8476 rafb1e35 36 36 37 37 def align_up(size, alignment): 38 "Align upwards to a given alignment" 38 39 return (((size) + ((alignment) - 1)) & ~((alignment) - 1)) 39 40
Note:
See TracChangeset
for help on using the changeset viewer.