On 01/10/2013 12:42 PM, Laurent Vivier wrote:
+static const bitmask_transtbl flock_tbl[] = {
+ TRANSTBL_CONVERT(F_RDLCK),
+ TRANSTBL_CONVERT(F_WRLCK),
+ TRANSTBL_CONVERT(F_UNLCK),
+ TRANSTBL_CONVERT(F_EXLCK),
+ TRANSTBL_CONVERT(F_SHLCK),
+ { 0, 0, 0, 0 }
+};
Oh, I forgot to mention that you'll need to protect against the case of F_RDLCK == 0 && TARGET_F_RDLCK == 0. The easiest way to handle this is place that entry last. r~
