@@ -1254,64 +1254,54 @@ impl File {
1254
1254
}
1255
1255
}
1256
1256
1257
- #[ cfg( not( any(
1258
- target_os = "android" ,
1259
- target_os = "emscripten" ,
1260
- target_os = "fuchsia" ,
1261
- target_os = "illumos" ,
1262
- target_os = "redox" ,
1263
- target_os = "solaris"
1264
- ) ) ) ]
1257
+ #[ cfg( any(
1258
+ target_os = "freebsd" ,
1259
+ target_os = "linux" ,
1260
+ target_os = "netbsd" ,
1261
+ target_vendor = "apple" ,
1262
+ ) ) ]
1265
1263
pub fn lock ( & self ) -> io:: Result < ( ) > {
1266
1264
cvt ( unsafe { libc:: flock ( self . as_raw_fd ( ) , libc:: LOCK_EX ) } ) ?;
1267
1265
return Ok ( ( ) ) ;
1268
1266
}
1269
1267
1270
- #[ cfg( any(
1271
- target_os = "android" ,
1272
- target_os = "emscripten" ,
1273
- target_os = "fuchsia" ,
1274
- target_os = "illumos" ,
1275
- target_os = "redox" ,
1276
- target_os = "solaris"
1277
- ) ) ]
1268
+ #[ cfg( not( any(
1269
+ target_os = "freebsd" ,
1270
+ target_os = "linux" ,
1271
+ target_os = "netbsd" ,
1272
+ target_vendor = "apple" ,
1273
+ ) ) ) ]
1278
1274
pub fn lock ( & self ) -> io:: Result < ( ) > {
1279
1275
Err ( io:: const_io_error!( io:: ErrorKind :: Unsupported , "lock() not supported" ) )
1280
1276
}
1281
1277
1282
- #[ cfg( not( any(
1283
- target_os = "android" ,
1284
- target_os = "emscripten" ,
1285
- target_os = "fuchsia" ,
1286
- target_os = "illumos" ,
1287
- target_os = "redox" ,
1288
- target_os = "solaris"
1289
- ) ) ) ]
1278
+ #[ cfg( any(
1279
+ target_os = "freebsd" ,
1280
+ target_os = "linux" ,
1281
+ target_os = "netbsd" ,
1282
+ target_vendor = "apple" ,
1283
+ ) ) ]
1290
1284
pub fn lock_shared ( & self ) -> io:: Result < ( ) > {
1291
1285
cvt ( unsafe { libc:: flock ( self . as_raw_fd ( ) , libc:: LOCK_SH ) } ) ?;
1292
1286
return Ok ( ( ) ) ;
1293
1287
}
1294
1288
1295
- #[ cfg( any(
1296
- target_os = "android" ,
1297
- target_os = "emscripten" ,
1298
- target_os = "fuchsia" ,
1299
- target_os = "illumos" ,
1300
- target_os = "redox" ,
1301
- target_os = "solaris"
1302
- ) ) ]
1289
+ #[ cfg( not( any(
1290
+ target_os = "freebsd" ,
1291
+ target_os = "linux" ,
1292
+ target_os = "netbsd" ,
1293
+ target_vendor = "apple" ,
1294
+ ) ) ) ]
1303
1295
pub fn lock_shared ( & self ) -> io:: Result < ( ) > {
1304
1296
Err ( io:: const_io_error!( io:: ErrorKind :: Unsupported , "lock_shared() not supported" ) )
1305
1297
}
1306
1298
1307
- #[ cfg( not( any(
1308
- target_os = "android" ,
1309
- target_os = "emscripten" ,
1310
- target_os = "fuchsia" ,
1311
- target_os = "illumos" ,
1312
- target_os = "redox" ,
1313
- target_os = "solaris"
1314
- ) ) ) ]
1299
+ #[ cfg( any(
1300
+ target_os = "freebsd" ,
1301
+ target_os = "linux" ,
1302
+ target_os = "netbsd" ,
1303
+ target_vendor = "apple" ,
1304
+ ) ) ]
1315
1305
pub fn try_lock ( & self ) -> io:: Result < bool > {
1316
1306
let result = cvt ( unsafe { libc:: flock ( self . as_raw_fd ( ) , libc:: LOCK_EX | libc:: LOCK_NB ) } ) ;
1317
1307
if let Err ( ref err) = result {
@@ -1323,26 +1313,22 @@ impl File {
1323
1313
return Ok ( true ) ;
1324
1314
}
1325
1315
1326
- #[ cfg( any(
1327
- target_os = "android" ,
1328
- target_os = "emscripten" ,
1329
- target_os = "fuchsia" ,
1330
- target_os = "illumos" ,
1331
- target_os = "redox" ,
1332
- target_os = "solaris"
1333
- ) ) ]
1316
+ #[ cfg( not( any(
1317
+ target_os = "freebsd" ,
1318
+ target_os = "linux" ,
1319
+ target_os = "netbsd" ,
1320
+ target_vendor = "apple" ,
1321
+ ) ) ) ]
1334
1322
pub fn try_lock ( & self ) -> io:: Result < bool > {
1335
1323
Err ( io:: const_io_error!( io:: ErrorKind :: Unsupported , "try_lock() not supported" ) )
1336
1324
}
1337
1325
1338
- #[ cfg( not( any(
1339
- target_os = "android" ,
1340
- target_os = "emscripten" ,
1341
- target_os = "fuchsia" ,
1342
- target_os = "illumos" ,
1343
- target_os = "redox" ,
1344
- target_os = "solaris"
1345
- ) ) ) ]
1326
+ #[ cfg( any(
1327
+ target_os = "freebsd" ,
1328
+ target_os = "linux" ,
1329
+ target_os = "netbsd" ,
1330
+ target_vendor = "apple" ,
1331
+ ) ) ]
1346
1332
pub fn try_lock_shared ( & self ) -> io:: Result < bool > {
1347
1333
let result = cvt ( unsafe { libc:: flock ( self . as_raw_fd ( ) , libc:: LOCK_SH | libc:: LOCK_NB ) } ) ;
1348
1334
if let Err ( ref err) = result {
@@ -1354,39 +1340,33 @@ impl File {
1354
1340
return Ok ( true ) ;
1355
1341
}
1356
1342
1357
- #[ cfg( any(
1358
- target_os = "android" ,
1359
- target_os = "emscripten" ,
1360
- target_os = "fuchsia" ,
1361
- target_os = "illumos" ,
1362
- target_os = "redox" ,
1363
- target_os = "solaris"
1364
- ) ) ]
1343
+ #[ cfg( not( any(
1344
+ target_os = "freebsd" ,
1345
+ target_os = "linux" ,
1346
+ target_os = "netbsd" ,
1347
+ target_vendor = "apple" ,
1348
+ ) ) ) ]
1365
1349
pub fn try_lock_shared ( & self ) -> io:: Result < bool > {
1366
1350
Err ( io:: const_io_error!( io:: ErrorKind :: Unsupported , "try_lock_shared() not supported" ) )
1367
1351
}
1368
1352
1369
- #[ cfg( not( any(
1370
- target_os = "android" ,
1371
- target_os = "emscripten" ,
1372
- target_os = "fuchsia" ,
1373
- target_os = "illumos" ,
1374
- target_os = "redox" ,
1375
- target_os = "solaris"
1376
- ) ) ) ]
1353
+ #[ cfg( any(
1354
+ target_os = "freebsd" ,
1355
+ target_os = "linux" ,
1356
+ target_os = "netbsd" ,
1357
+ target_vendor = "apple" ,
1358
+ ) ) ]
1377
1359
pub fn unlock ( & self ) -> io:: Result < ( ) > {
1378
1360
cvt ( unsafe { libc:: flock ( self . as_raw_fd ( ) , libc:: LOCK_UN ) } ) ?;
1379
1361
return Ok ( ( ) ) ;
1380
1362
}
1381
1363
1382
- #[ cfg( any(
1383
- target_os = "android" ,
1384
- target_os = "emscripten" ,
1385
- target_os = "fuchsia" ,
1386
- target_os = "illumos" ,
1387
- target_os = "redox" ,
1388
- target_os = "solaris"
1389
- ) ) ]
1364
+ #[ cfg( not( any(
1365
+ target_os = "freebsd" ,
1366
+ target_os = "linux" ,
1367
+ target_os = "netbsd" ,
1368
+ target_vendor = "apple" ,
1369
+ ) ) ) ]
1390
1370
pub fn unlock ( & self ) -> io:: Result < ( ) > {
1391
1371
Err ( io:: const_io_error!( io:: ErrorKind :: Unsupported , "unlock() not supported" ) )
1392
1372
}
0 commit comments